開始使用 Codeigniter 4
沉寂了幾年沒有動靜的 Codeigniter 於前兩年重新復活,並且發表了 Codeigniter 4,更貼近現在 MVC 架構。
許多僅需要撰寫小型專案時,輕量且可快速建置的 Codeigniter 是不錯的選擇。
建置環境基本需求:
1. PHP 7.4+
2. Extensions: intl , mbstring , json
step1) 使用 PHP Composer 安裝:
composer create-project codeigniter4/appstarter project-root
step 2) env 檔基本設定
將專案的根目錄底下的 env 檔案複製並取名為 .env
cp env .env
step 3) 本機啟動 Codeigniter
php spark serve
http://localhost:8080 即可看到 codeigniter 首頁
是不是很迅速呢!? 🙂
ref: https://codeigniter.com/user_guide/installation/index.html