kenken999/php
0
1<?php2 3use Illuminate\Contracts\Http\Kernel;4use Illuminate\Http\Request;5 6define('LARAVEL_START', microtime(true));7 8/*9|--------------------------------------------------------------------------10| Check If The Application Is Under Maintenance11|--------------------------------------------------------------------------12|13| If the application is in maintenance / demo mode via the "down" command14| we will load this file so that any pre-rendered content can be shown15| instead of starting the framework, which could cause an exception.16|17*/18 19if (file_exists(__DIR__.'/../storage/framework/maintenance.php')) {20 require __DIR__.'/../storage/framework/maintenance.php';21}22 23/*24|--------------------------------------------------------------------------25| Register The Auto Loader26|--------------------------------------------------------------------------27|28| Composer provides a convenient, automatically generated class loader for29| this application. We just need to utilize it! We'll simply require it30| into the script here so we don't need to manually load our classes.31|32*/33 34require __DIR__.'/../vendor/autoload.php';35 36/*37|--------------------------------------------------------------------------38| Run The Application39|--------------------------------------------------------------------------40|41| Once we have the application, we can handle the incoming request using42| the application's HTTP kernel. Then, we will send the response back43| to this client's browser, allowing them to enjoy our application.44|45*/46 47$app = require_once __DIR__.'/../bootstrap/app.php';48 49$kernel = $app->make(Kernel::class);50 51$response = tap($kernel->handle(52 $request = Request::capture()53))->send();54 55$kernel->terminate($request, $response);56 