首頁  >  文章  >  後端開發  >  PHP命令列

PHP命令列

jacklove
jacklove原創
2018-06-11 23:37:512002瀏覽

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
上一篇:php基本語法下一篇:php基本語法