2019鐵人賽
之前都使用終端機(Terminal)來執行 .php 檔案
首先需要先在 Terminal 下一些指令,來開啓簡單的 php 服務器
php -S <addr>:<port> Run with built-in web server.
執行
php -S 127.0.0.1:3000
結果
PHP 7.2.11-4+ubuntu18.04.1+deb.sury.org+1 Development Server started
Listening on http://127.0.0.1:3000
Document root is /home/jett
Press Ctrl-C to quit.
基本上這支程式會請聽 127.0.0.1 IP 的 3000 port
基本上會讀取資料夾裡面的檔案,路徑'/'
會讀取index.php
檔案
如果要移動到其他路徑的話,需要有對應的檔案才能切換
路徑'/about.php'
,需要在資料夾底下擁有about.php
,才能執行about.php
檔案。