cd path/to/your/app
php -S localhost:8000
php -S 127.0.0.1:8000
cd path to your poroject
php -S 127.0.0.1:8000
<?php //start
?> //stop
php -f /path/to/your/file.php
php -S localhost:port
// terminal run php file
// First run "php" in the terminal, in the path directory
php
// If php works there. Then :
php path_to_file/file_name.php
//This will run your php and print stuff to your console in plain text.
//It's useful for a range of testing and data maniplation purposes.
//And has the full php cammand line. So potential is up to your imagination.
php.ini
To execute a php script, use the PHP Command Line interface(CLI) and specify the file name of the script in the following way:
php script.php