php -d cli_PHP命令行(CLI模式)

CLI模式

CLI模式其实就是命令行运行模式,英文全称Command-Line Interface(命令行接口)

$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

-aRun as interactive shell以交互shell模式运行

-c| Look for php.ini file in this directory

指定php.ini文件所在的目录

-n No configuration(ini) fileswill be used

指定不使用php.ini文件

-d foo[=bar] Define INI entry foo with value 'bar'

定义一个INI实体,key为foo,value为'bar'

-e Generate extended informationfor debugger/profiler

为调试和分析生成扩展信息

-f Parse and execute .解释和执行文件-h This help

打印帮助信息

-i PHP information

显示PHP的基本信息

<

你可能感兴趣的:(php,-d,cli)