DC PHP, Aug 27th 2014
© David Buchmann, Liip AG
1 | class MyClass |
2 | { |
3 | public function do () |
4 | { |
5 | global $variable ; |
6 | echo $variable ; |
7 | } |
8 | } |
NO!
1 | class MyClass |
2 | { |
3 | public function do () |
4 | { |
5 | echo Registry::instance()->get( 'variable' ); |
6 | } |
7 | } |
Meh. A bit better but not good.
01 | class MyClass |
02 | { |
03 | private $variable ; |
04 | |
05 | public function __construct( $variable ) |
06 | { |
07 | $this ->variable = $variable ; |
08 | } |
09 | public function do () |
10 | { |
11 | echo $this ->variable; |
12 | } |
13 | } |
This is dependency injection!
1 | // /test-path?name=test |
2 | $request = Request::createFromGlobals(); |
3 | $request ->query->get( 'name' ); // test |
4 | $request ->getLanguages(); // ordered by priority |
5 | $request ->getContent(); // body of request |
6 | Request::create( '/test-path' , 'GET' , array ( 'name' => 'test' )); |
1 | $response = new Response( 'Success' , Response::HTTP_OK, |
2 | array ( 'content-type' => 'text/plain' )); |
3 | $response ->headers->setCookie( 'foo' => 'bar' ); |
4 | $response ->setMaxAge(3600); // let client cache for 1 hour |
5 | $response ->send(); |
01 | $response = new RedirectResponse( 'http://php.net' ); |
02 | $response = new Response( 'Not Found' , Response::HTTP_NOT_FOUND); |
03 |
04 | $path = '/path/to/file.txt' ; |
05 | $response = new BinaryFileResponse( $file ); |
06 | // overwrite the filename |
07 | $response ->setContentDisposition( |
08 | ResponseHeaderBag::DISPOSITION_ATTACHMENT, |
09 | 'filename.txt' |
10 | ); |
01 | $route = new Route( '/articles/{slug}' , |
02 | array ( 'controller' => 'MyClass' )); |
03 | $routes = new RouteCollection(); |
04 | $routes ->add( 'article' , $route ); |
05 | // convenient when using HttpFoundation: |
06 | $context = RequestContext::fromRequest( |
07 | Request::createFromGlobals()); |
08 |
09 | $matcher = new UrlMatcher( $routes , $context ); |
10 | $parameters = $matcher ->match( '/articles/my' ); |
11 | // array('slug'=>'my', 'controller'=>'MyClass', |
12 | // '_route'=>'article') |
13 | // |
14 | // Your application knows how to call MyClass |
1 | $generator = new UrlGenerator( $routes , $context ); |
2 | $generator ->generate( 'article' , array ( |
3 | 'slug' => 'my' , |
4 | )); |
5 | // /article/my |
6 |
7 | $generator ->generate( 'article' , array ( |
8 | 'slug' => 'my' ), true); |
1 | article: |
2 | path: /article/{slug} |
3 | defaults: { _controller: 'MyClass' } |
4 | requirements: |
5 | slug: [a-zA-Z\-] |
1 | // uses the optional Config component |
2 | $locator = new FileLocator( array (__DIR__)); |
3 | $loader = new YamlFileLoader( $locator ); |
4 | $collection = $loader ->load( 'routes.yml' ); |
1 | <!DOCTYPE html> |
2 | < html > |
3 | < head > |
4 | < title >Welcome to Washington DC PHP!</ title > |
5 | </ head > |
6 | < body > |
7 | < h1 >Hello: {{ name }}</ h1 > |
8 | </ body > |
9 | </ html > |
1 | < ul > |
2 | {% for user in users if user.active %} |
3 | < li >{{ user.username }}</ li > |
4 | {% else %} |
5 | < li >No users found</ li > |
6 | {% endfor %} |
7 | </ ul > |
1 | {# base.html.twig #} |
2 | < html > |
3 | < head > |
4 | {% block title %}Liip AG{% endblock %} |
5 | </ head > |
6 | < body > |
7 | {% block body %}{% endblock %} |
8 | </ body > |
9 | </ html > |
1 | {% extends 'base.html.twig' %} |
2 | {% block title %} |
3 | {{ content.title }} - {{ parent() }} |
4 | {% endblock %} |
5 | {% block body %}{{ content.text }}{% endblock %} |
1 | $ curl -s https://getcomposer.org/installer | php |
2 | $ php composer.phar create-project symfony/framework-standard-edition my-project 2.5.* |
Configure your web server to point to web subfolder of my-project
1 | $ php app/console generate:bundle --namespace=DC/HelloBundle -- format =yml |
2 | # simply accept all defaults, they are fine |
1 | // app/AppKernel.php |
2 | public function registerBundles() |
3 | { |
4 | $bundles = array ( |
5 | // ... |
6 | new DC\HelloBundle\DCHelloBundle(), |
7 | ); |
8 | return $bundles ; |
9 | } |
Also links routing file from app/config/routing.yml
01 | namespace DC\HelloBundle\Controller; |
02 |
03 | use Symfony\Component\HttpFoundation\Response; |
04 |
05 | class HelloController |
06 | { |
07 | public function greetAction( $name ) |
08 | { |
09 | return new Response( "Hello $name" ); |
10 | } |
11 | } |
1 | $this ->render( |
2 | 'DCHelloBundle:Hello:greet.html.twig' , |
3 | array ( 'name' => $name ) |
4 | ); |
01 | <?php |
02 | namespace DC\HelloBundle\Entity; |
03 | class Page |
04 | { |
05 | private $mainText ; |
06 | public function __construct( $text ) |
07 | { |
08 | $this ->mainText = $text ; |
09 | } |
10 | public function getMainText() |
11 | { |
12 | return $this ->mainText; |
13 | } |
14 | public function setMainText( $text ) |
15 | { |
16 | $this ->mainText = $text ; |
17 | } |
18 | } |
1 | $page = new \DC\HelloBundle\Entity\Page( 'test' ); |
2 | return $this ->render( |
3 | 'DCHelloBundle:Default:index.html.twig' , |
4 | array ( 'name' => $name , 'page' => $page ) |
5 | ); |
1 | < p >{{ page.mainText }}</ p > |
01 | use Doctrine\ORM\Mapping as ORM; |
02 |
03 | /** |
04 | * @ORM\Entity |
05 | */ |
06 | class Page |
07 | { |
08 | /** |
09 | * @ORM\Column(name="id", type="integer") |
10 | * @ORM\Id |
11 | * @ORM\GeneratedValue(strategy="AUTO") |
12 | */ |
13 | private $id ; |
14 |
15 | /** |
16 | * @ORM\Column(name="main_text", type="string") |
17 | */ |
18 | private $mainText ; |
19 | ... |
1 | $ app/console doctrine:schema:update --dump-sql |
2 | CREATE TABLE Page ( id INTEGER NOT NULL, main_text VARCHAR(255) NOT NULL, PRIMARY KEY( id )) |
3 |
4 | $ app/console doctrine:schema:update --force |
5 | Updating database schema... |
6 | Database schema updated successfully! "1" queries were executed |
1 | $page = new Page( 'DCPHP in Washington' ); |
2 |
3 | $em = $this ->getDoctrine()->getManager(); |
4 | $em ->persist( $page ); |
5 | $em -> flush (); |
1 | $em = $this ->getDoctrine()->getManager(); |
2 | $repository = $em ->getRepository( 'DCHelloBundle:Page' ) |
3 | $page = $repository ->find( $id ); |
4 | if (! $page ) { |
5 | throw new NotFoundHttpException( "no page $id" ); |
6 | } |
7 | // render as before |
8 | } |
1 | php composer.phar require "knplabs/knp-markdown-bundle:1.2.*" |
1 | $bundles = array ( |
2 | // ... |
3 | new Knp\Bundle\MarkdownBundle\KnpMarkdownBundle(), |
4 | ); |
1 | {{ page.mainText|markdown }} |