这篇文章主要介绍了关于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命令行模式代码实例详解的文章就介绍到这了,更多相关关于php命令行模式内容请搜索编程学习网以前的文章希望大家以后多多支持编程学习网!
本文标题为:php命令行模式代码实例详解
- PHP简单实现二维数组的矩阵转置操作示例 2022-10-02
- PHP中PDO事务处理操作示例 2022-10-15
- laravel通用化的CURD的实现 2023-03-17
- PHP实现微信支付(jsapi支付)流程步骤详解 2022-10-09
- PHP仿tp实现mvc框架基本设计思路与实现方法分析 2022-10-18
- windows下9款一键快速搭建PHP本地运行环境的好工具(含php7.0环境) 2023-09-02
- laravel实现按月或天或小时统计mysql数据的方法 2023-02-22
- Laravel balde模板文件中判断数据为空方法 2023-08-30
- 用nohup命令实现PHP的多进程 2023-09-02
- php微信公众号开发之秒杀 2022-11-23