微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

关于php命令行模式介绍

PHP全集行模式,即PHP-cli,官方文档中称为: CLI SAPI(Server Application Programming Interface,服务端应用编程端口).听着挺复杂。其实是因为PHP原本为服务器端的脚本语言,所以引申出这个叫法。

与服务端模式的不同

服务端模式主要有两种工作方式: 作为web server的模式方式或作为一个cgi可执行程序. 前者,比如作为apach中的一个模块(如:PHP5apache2.dll); 后者作为可执行程序,如PHP-cig. 现在的替代者为PHP-fpm(FastCGI Process Manager).

看下PHP-fpm的配置。 在服务器上,放一脚本文件内容

<?PHP
PHPinfo();
?>

输出:

...
Server API	FPM/FastCGI
Virtual Directory Support	disabled
Configuration File (PHP.ini) Path	/etc/PHP7
Loaded Configuration File	/etc/PHP7/PHP.ini
Scan this dir for additional .ini files	/etc/PHP7/conf.d
...

说明配置文件为 /etc/PHP7/PHP.ini的/etc/PHP7/conf.d

再看下cli模式的配置文件. 运行

PHP -r PHPinfo();

-r 即 run运行全集意思. 输出为:

...
Server API => Command Line Interface
Virtual Directory Support => disabled
Configuration File (PHP.ini) Path => /etc/PHP/7.0/cli
Loaded Configuration File => /etc/PHP/7.0/cli/PHP.ini
Scan this dir for additional .ini files => /etc/PHP/7.0/cli/conf.d
Additional .ini files parsed => /etc/PHP/7.0/cli/conf.d/10-opcache.ini,
...

配置文件路径为: /etc/PHP/7.0/cli/PHP.ini 和PHP-fpm是不同的。

常听到有人说,PHP只能作为服务器暂时间脚本,不能作为长时间工作,还有安全配置会影响命令行等,显然是错误的。

其它差异

cli模式,定义了STDIN, STDOUT, STDERR三个常量; 如: $stderr = fopen(‘PHP://stderr’, ‘w’);

CLI SAPI 不会将当前目录改为已运行的脚本所在的目录.

PHP作为shell脚本

有两种方法PHP脚本作为shell脚本, 如脚本:
hello.PHP

<?PHP
echo Hello World!;
var_dump($argv);
?>

方法1, PHP 脚本 参数

~PHP hello.PHP -s 'me'
hello world
array(3) {
  [0]=>
  string(9) hello.PHP
  [1]=>
  string(2) -s
  [2]=>
  string(2) me
}

方法2, 在PHP文件头加

#!/usr/bin/PHP

然后 chmod u+x hello.PHP
执行 ./hello.PHP

hello world
array(1) {
  [0]=>
  string(11) ./hello.PHP
}

相关推荐:

PHP教程:/course/list/php/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐