PHP Classes

File: public/index.php

Recommend this page to a friend!
  Classes of Manolo Salsas   PHP Budget Application API   public/index.php   Download  
File: public/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Budget Application API
API to manage records of budget requests
Author: By
Last change:
Date: 4 years ago
Size: 798 bytes
 

Contents

Class file image Download
<?php

use App\Kernel;
use
Symfony\Component\Debug\Debug;
use
Symfony\Component\HttpFoundation\Request;

require
dirname(__DIR__).'/config/bootstrap.php';

if (
$_SERVER['APP_DEBUG']) {
   
umask(0000);

   
Debug::enable();
}

if (
$trustedProxies = $_SERVER['TRUSTED_PROXIES'] ?? $_ENV['TRUSTED_PROXIES'] ?? false) {
   
Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_ALL ^ Request::HEADER_X_FORWARDED_HOST);
}

if (
$trustedHosts = $_SERVER['TRUSTED_HOSTS'] ?? $_ENV['TRUSTED_HOSTS'] ?? false) {
   
Request::setTrustedHosts([$trustedHosts]);
}

$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);