run php server 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: start php server
cd path/to/your/app/script
php -S localhost:1234
Example 4: simple localhost php
1) cd ~/public_html
2) php -S localhost:8000
Example 5: run a server php terminal
$ cd ~/public_html
$ php -S localhost:8000
Example 6: run a php site
php -S 127.0.0.1:8000