php server run command code example
Example 1: run php server
cd path/to/your/app
php -S localhost:8000
Example 2: php run command line
shell_exec('ls');
// or
exec('ls');
cd path/to/your/app
php -S localhost:8000
shell_exec('ls');
// or
exec('ls');