Try   HackMD

Laravel 生命週期

tags: Laravel PHP
  • Image Not Showing Possible Reasons
    • The image file may be corrupted
    • The server hosting the image is unavailable
    • The image path is incorrect
    • The image format is not supported
    Learn More →
  • 參考網址

用文字記錄自己理解的生命週期 laravel 9 版本

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