PHP Classes

File: web/app.php

Recommend this page to a friend!
  Classes of Manolo Salsas   PHP Polymorphism Example   web/app.php   Download  
File: web/app.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Polymorphism Example
Show several ways of implementing of polymorphism
Author: By
Last change:
Date: 3 years ago
Size: 645 bytes
 

Contents

Class file image Download
<?php

use Symfony\Component\HttpFoundation\Request;

require
__DIR__.'/../vendor/autoload.php';
if (
PHP_VERSION_ID < 70000) {
    include_once
__DIR__.'/../var/bootstrap.php.cache';
}

$kernel = new AppKernel('prod', false);
if (
PHP_VERSION_ID < 70000) {
   
$kernel->loadClassCache();
}
//$kernel = new AppCache($kernel);

// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter
//Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);