PHP Classes

File: web/app.php

Recommend this page to a friend!
  Classes of Sergii Pryz   PHP CSV Import to MySQL   web/app.php   Download  
File: web/app.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP CSV Import to MySQL
Import user data from CSV files into MySQL
Author: By
Last change:
Date: 4 years ago
Size: 686 bytes
 

Contents

Class file image Download
<?php
// @codeCoverageIgnoreStart

use Symfony\Component\HttpFoundation\Request;

/** @var \Composer\Autoload\ClassLoader $loader */
$loader = require __DIR__.'/../app/autoload.php';
include_once
__DIR__.'/../var/bootstrap.php.cache';

$kernel = new AppKernel('prod', false);
$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);

// @codeCoverageIgnoreEnd