php http server code example
Example 1: run php server
cd path/to/your/app
php -S localhost:8000
Example 2: simple localhost php
1) cd ~/public_html
2) php -S localhost:8000
Example 3: php server
cd path/to/your/app
php -S 127.0.0.1:8000
Example 4: php server
php -S localhost:8000 -t ./
Example 5: phpserver
$ php -S localhost:8000 router.php