# Laravel 生命週期 ###### tags: `Laravel` `PHP` * ![](https://i.imgur.com/7RyNntE.png) * [參考網址](https://hackmd.io/@javck/r1Zzl5BCP) ## 用文字記錄自己理解的生命週期 laravel 9 版本 * [官網 doc](https://laravel.com/docs/9.x/lifecycle) ### public/index.php * 所有 request 的入口都是 public/index.php 這隻檔案,被 Apache or nginx 導向至此 * Check If The Application Is Under Maintenance * Register The Auto Loader * 透過 composer ,符合 PSR-X,可自動載入有 use 的 class 而不用再 require * Run The Application