Slide 1

Slide 1 text

PHP Moderno

Slide 2

Slide 2 text

@JonataWeber

Slide 3

Slide 3 text

Versões Suportadas

Slide 4

Slide 4 text

PSRs PHP Standards Recommendations 1 - Basic Coding Standard 2 - Coding Style Guide 3 - Logger Interface 4 - Autoloading Standard 6 - Caching Interface 7 - HTTP Message Interface 11 - Container Interface 13 - Hypermedia Links 16 - Simple Cache

Slide 5

Slide 5 text

composer.json { "require": { "monolog/monolog": "1.0.*" } } php composer.phar install http://www.packagist.org

Slide 6

Slide 6 text

No content

Slide 7

Slide 7 text

Monolog github.com/Seldaek/monolog IFTTT, SendGrid, Slack, NewRelic, Redis, Mongo, etc...

Slide 8

Slide 8 text

www.phptherightway.com

Slide 9

Slide 9 text

Model-View-Controller

Slide 10

Slide 10 text

foo.php

Slide 11

Slide 11 text

models/FooModel.php views/foo-list.php

Slide 12

Slide 12 text

Anonymous Functions http://php.net/manual/pt_BR/function s.anonymous.php

Slide 13

Slide 13 text

Anonymous Class https://secure.php.net/manual/pt_BR /language.oop5.anonymous.php

Slide 14

Slide 14 text

Traits http://php.net/manual/pt_BR/languag e.oop5.traits.php

Slide 15

Slide 15 text

Namespaces http://php.net/manual/pt_BR/languag e.namespaces.php

Slide 16

Slide 16 text

Generators https://secure.php.net/manual/pt_BR /language.generators.php

Slide 17

Slide 17 text

SPL Standard PHP Library ● Estrutura de Dados ● Iteradores ● Interfaces ● Exceções ● Manipulação de Arquivos ● Classes e Interfaces Genéricas

Slide 18

Slide 18 text

Buit in server PHP >= 5.4 (2012) $ php -S localhost:8000

Slide 19

Slide 19 text

PHP 7 https://secure.php.net/manual/pt_BR/migration7 0.new-features.php ● Scalar Type Hints ● Return Type Declarations ● Spaceship Operator (<=>) ● Null Coalesce Operator (??) ● Arrays Constantes ● Performance

Slide 20

Slide 20 text

Types

Slide 21

Slide 21 text

Microframeworks ● Silex - silex.sensiolabs.org ● Slim - slimframework.com ● Lumen - lumen.laravel.com ● Zend Expressive

Slide 22

Slide 22 text

Servers ● PaaS - Plataform as a Service ● Virtual ou Dedicated Servers ● nginx e PHP-FPM ● Docker e Vagrant

Slide 23

Slide 23 text

Deployment ● Rocketeer ● Phing ● Deployer

Slide 24

Slide 24 text

Livecoding

Slide 25

Slide 25 text

Perguntas? @JonataWeber bit.ly/ws-cursos

Slide 26

Slide 26 text

Referências ● phptherightway.com ● Livro PHP Moderno - O'Reilly ● https://www.youtube.com/watch?v=ZQVztAwoHUA