how to run php file on terminal code example
Example 1: run a server php terminal
$ cd ~/public_html
$ php -S localhost:8000
Example 2: execute php file from command line
php -f /path/to/your/file.php
$ cd ~/public_html
$ php -S localhost:8000
php -f /path/to/your/file.php