PHP Classes

File: web/app.php

Recommend this page to a friend!
  Classes of Manolo Salsas   Online PHP Image Transform   web/app.php   Download  
File: web/app.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Online PHP Image Transform
Application to do interactive image manipulation
Author: By
Last change:
Date: 5 years ago
Size: 724 bytes
 

Contents

Class file image Download
<?php

use Symfony\Component\ClassLoader\ApcClassLoader;
use
Symfony\Component\HttpFoundation\Request;

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

// Use APC for autoloading to improve performance
// Change 'sf2' by the prefix you want in order to prevent key conflict with another application
/*
$loader = new ApcClassLoader('sf2', $loader);
$loader->register(true);
*/

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

$kernel = new AppKernel('prod', false);
$kernel->loadClassCache();
$kernel = new AppCache($kernel);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);