php serve command code example
Example 1: run php server
cd path/to/your/app
php -S localhost:8000
Example 2: serve php file
Open Terminal
php -S localhost:8000
Example 3: php serve
// to serve folder foo in public
$ cd ~/public
$ php -S localhost:8000 -t foo/
Example 4: run a server php terminal
$ cd ~/public_html
$ php -S localhost:8000