how to run php files code example
Example 1: run php server
cd path/to/your/app
php -S localhost:8000
Example 2: start php file
<?php //start
?> //stop
Example 3: execute php file from command line
php -f /path/to/your/file.php
cd path/to/your/app
php -S localhost:8000
<?php //start
?> //stop
php -f /path/to/your/file.php