君山 发表于 2020-5-9 18:51:41

PHP下的命令行执行(命令提示符界面)

以下是 PHP 二进制文件(即 php.exe 程序)提供的命令行模式的选项参数,您随时可以通过 PHP -h 命令来查询这些参数。

Usage: php [-f] <file>
       php -r <code>
       php [-- args...]
-s               Display colour syntax highlighted source.
-w               Display source with stripped comments and whitespace.
-f <file>      Parse <file>.
-v               Version number
-c <path>|<file> Look for php.ini file in this directory
-a               Run interactively
-d foo[=bar]   Define INI entry foo with value 'bar'
-e               Generate extended information for debugger/profiler
-z <file>      Load Zend extension <file>.
-l               Syntax check only (lint)
-m               Show compiled in modules
-i               PHP information
-r <code>      Run PHP <code> without using script tags <?..?>
-h               This help

args...          Arguments passed to script. Use -- args when first argument
                   starts with - or script is read from stdin

CLI SAPI 模块有以下三种不同的方法来获取您要运行的 PHP 代码:

在windows环境下,尽量使用双引号, 在linux环境下则尽量使用单引号来完成。

1. 让 PHP 运行指定文件。
php my_script.php

php -f"my_script.php"
2. 在命令行直接运行 PHP 代码。
php -r "print_r(get_defined_constants());"
3. 通过标准输入(stdin)提供需要运行的 PHP 代码。
$ some_application | some_filter | php | sort -u >final_output.txt

以上三种运行代码的方法不能同时使用。

和所有的外壳应用程序一样,PHP 的二进制文件(php.exe 文件)及其运行的 PHP 脚本能够接受一系列的参数。PHP 没有限制传送给脚本程序的参数的个数(外壳程序对命令行的字符数有限制,但您通常都不会超过该限制)。传递给您脚本的参数可在全局变量 $argv 中获取。该数组中下标为零的成员为脚本的名称(当 PHP 代码来自标准输入获直接用 -r 参数以命令行方式运行时,该名称为“-”)。另外,全局变量 $argc 存有 $argv 数组中成员变量的个数(而非传送给脚本程序的参数的个数)。

只要您传送给您脚本的参数不是以 - 符号开头,您就无需过多的注意什么。向您的脚本传送以 - 开头的参数会导致错误,因为 PHP 会认为应该由它自身来处理这些参数。您可以用参数列表分隔符 -- 来解决这个问题。在 PHP 解析完参数后,该符号后所有的参数将会被原样传送给您的脚本程序。

页: [1]
查看完整版本: PHP下的命令行执行(命令提示符界面)