Home>Article>Backend Development> PHP command line
jinxu@jinxu-ubuntu:~$ php -h Usage: php [options] [-f][--] [args...] php [options] -r [--] [args...] php [options] [-B
] -R [-E
] [--] [args...] php [options] [-B ] -F [-E ] [--] [args...] php [options] -S : [-t docroot] [router] php [options] -- [args...] php [options] -a -a Run interactively -c | Look for php.ini file in this directory -n No configuration (ini) files will be used -d foo[=bar] Define INI entry foo with value 'bar' -e Generate extended information for debugger/profiler -f Parse and execute . -h This help -i PHP information -l Syntax check only (lint) -m Show compiled in modules -r Run PHP
without using script tags ..?> -B
Run PHP before processing input lines -R Run PHP
for every input line -F
Parse and execute for every input line -E Run PHP after processing all input lines -H Hide any passed arguments from external tools. -S : Run with built-in web server. -t Specify document root for built-in web server. -s Output HTML syntax highlighted source. -v Version number -w Output source with stripped comments and whitespace. -z Load Zend extension . args... Arguments passed to script. Use -- args when first argument starts with - or script is read from stdin --ini Show configuration file names --rf Show information about function . --rc Show information about class . --re Show information about extension . --rz Show information about Zend extension . --ri Show configuration for extension .
Enter the directory where the project is located
shift Right click to open the command line
Execute php -S localhost:8000
Open localhost:8000
# in the browserphp [options] [-f] 28897b20adb25fbae118a3f80f538dec [--] [args...]
php -a
jinxu@jinxu-ubuntu:~$ php -h Usage: php [options] [-f][--] [args...] php [options] -r [--] [args...] php [options] [-B
] -R [-E
] [--] [args...] php [options] [-B ] -F [-E ] [--] [args...] php [options] -S : [-t docroot] [router] php [options] -- [args...] php [options] -a -a Run interactively -c | Look for php.ini file in this directory -n No configuration (ini) files will be used -d foo[=bar] Define INI entry foo with value 'bar' -e Generate extended information for debugger/profiler -f Parse and execute . -h This help -i PHP information -l Syntax check only (lint) -m Show compiled in modules -r Run PHP
without using script tags ..?> -B
Run PHP before processing input lines -R Run PHP
for every input line -F
Parse and execute for every input line -E Run PHP after processing all input lines -H Hide any passed arguments from external tools. -S : Run with built-in web server. -t Specify document root for built-in web server. -s Output HTML syntax highlighted source. -v Version number -w Output source with stripped comments and whitespace. -z Load Zend extension . args... Arguments passed to script. Use -- args when first argument starts with - or script is read from stdin --ini Show configuration file names --rf Show information about function . --rc Show information about class . --re Show information about extension . --rz Show information about Zend extension . --ri Show configuration for extension .
php [options] [-f] 28897b20adb25fbae118a3f80f538dec [--] [args...]
php -a
The above is the detailed content of PHP command line. For more information, please follow other related articles on the PHP Chinese website!