首页  >  文章  >  后端开发  >  PHP命令行

PHP命令行

jacklove
jacklove原创
2018-06-11 23:37:511997浏览

PHP命令行

php命令

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 .

作为本地服务器

  1. 进入到项目所在目录

  2. shift+右键打开命令行

  3. 执行 php -S localhost:8000

  4. 浏览器中打开 localhost:8000

执行脚本

执行 php [options] [-f] 28897b20adb25fbae118a3f80f538dec [--] [args...]

交互式命令

执行 php -a

PHP命令行

php命令

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 .

作为本地服务器

  1. 进入到项目所在目录

  2. shift+右键打开命令行

  3. 执行 php -S localhost:8000

  4. 浏览器中打开 localhost:8000

执行脚本

执行 php [options] [-f] 28897b20adb25fbae118a3f80f538dec [--] [args...]

交互式命令

执行 php -a

本文介绍了PHP命令行 ,更多相关内容请关注php中文网。

相关推荐:

PHP获取客户端信息

PHP 时间处理

php编辑用户信息

以上是PHP命令行的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn