PHP Classes

File: calcul/app.php

Recommend this page to a friend!
  Classes of eureka2   G6K   calcul/app.php   Download  
File: calcul/app.php
Role: Example script
Content type: text/plain
Description: Example script
Class: G6K
Generate simulator tools to perform calculations
Author: By
Last change:
Date: 6 years ago
Size: 504 bytes
 

Contents

Class file image Download
<?php

use Symfony\Component\HttpFoundation\Request;

$loader = require_once __DIR__.'/../app/bootstrap.php.cache';

require_once
__DIR__.'/../app/AppKernel.php';

$kernel = new AppKernel('prod', false);
$kernel->loadClassCache();

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