php:server:start
Starting the built-in web server
$ php -S localhost:8000
try on your machine
explain this command
php:code:run
Run PHP code (Notes: Don't use ?> tags; escape double quotes with backslash).
$ php -r "${code}"
try on your machine
explain this command
php:lint
Check for syntax errors in php files (linting)
$ php -l ${filename}
try on your machine
php:script:run:memory_limit
Run a PHP CLI script with a defined memory limit
$ php -d memory_limit=${limit_in_megabyte}M ${filename}
try on your machine
explain this command