Diferencia entre revisiones de «Usuario:ManuelRomero/micursos/Laravel/CicloVida»
De WikiEducator
(Página creada con «{{TEP}} {{:Usuario:ManuelRomero/micursos/Laravel/introduccion/nav}} <br> __NOTOC__») |
|||
Línea 3: | Línea 3: | ||
<br> | <br> | ||
__NOTOC__ | __NOTOC__ | ||
+ | |||
+ | https://laravel.com/docs/5.4/lifecycle | ||
+ | |||
+ | Punto de entrada de la app | ||
+ | public/index.php | ||
+ | Es poco el código que tiene este fichero cuyas acciones basicamente hacen | ||
+ | |||
+ | {{Plegable|hide|contenido public/index.php| | ||
+ | <source lang=php> | ||
+ | | into the script here so that we don't have to worry about manual | ||
+ | | loading any of our classes later on. It feels nice to relax. | ||
+ | | | ||
+ | */ | ||
+ | |||
+ | require __DIR__.'/../bootstrap/autoload.php'; | ||
+ | |||
+ | /* | ||
+ | |-------------------------------------------------------------------------- | ||
+ | | Turn On The Lights | ||
+ | |-------------------------------------------------------------------------- | ||
+ | | | ||
+ | | We need to illuminate PHP development, so let us turn on the lights. | ||
+ | | This bootstraps the framework and gets it ready for use, then it | ||
+ | | will load up this application so that we can run it and send | ||
+ | | the responses back to the browser and delight our users. | ||
+ | | | ||
+ | */ | ||
+ | |||
+ | $app = require_once __DIR__.'/../bootstrap/app.php'; | ||
+ | |||
+ | /* | ||
+ | |-------------------------------------------------------------------------- | ||
+ | | Run The Application | ||
+ | |-------------------------------------------------------------------------- | ||
+ | | | ||
+ | | Once we have the application, we can handle the incoming request | ||
+ | | through the kernel, and send the associated response back to | ||
+ | | the client's browser allowing them to enjoy the creative | ||
+ | | and wonderful application we have prepared for them. | ||
+ | | | ||
+ | */ | ||
+ | |||
+ | $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); | ||
+ | |||
+ | $response = $kernel->handle( | ||
+ | $request = Illuminate\Http\Request::capture() | ||
+ | ); | ||
+ | |||
+ | $response->send(); | ||
+ | |||
+ | $kernel->terminate($request, $response); | ||
+ | 37,0-1 Final | ||
+ | |||
+ | </source> | ||
+ | |||
+ | }} | ||
+ | Carga el ficnero autoload.php | ||
+ | Obtiene una instancia de la aplicación (app.php) |
Revisión de 01:34 7 mar 2017
Trabajo en proceso, espera cambios frecuentes. Tu ayuda y retroalimentación son bienvenidos. Ver página de charlas. |
https://laravel.com/docs/5.4/lifecycle
Punto de entrada de la app
public/index.php
Es poco el código que tiene este fichero cuyas acciones basicamente hacen
contenido public/index.php |
---|
| into the script here so that we don't have to worry about manual | loading any of our classes later on. It feels nice to relax. | */ require __DIR__.'/../bootstrap/autoload.php'; /* |-------------------------------------------------------------------------- | Turn On The Lights |-------------------------------------------------------------------------- | | We need to illuminate PHP development, so let us turn on the lights. | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ $app = require_once __DIR__.'/../bootstrap/app.php'; /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); $response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); $response->send(); $kernel->terminate($request, $response); 37,0-1 Final |
Carga el ficnero autoload.php Obtiene una instancia de la aplicación (app.php)