關於php命令列模式介紹

2020-07-16 10:05:51

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視訊教學:https://www.php.cn/course/list/29/type/2.html

以上就是關於php命令列模式介紹的詳細內容,更多請關注TW511.COM其它相關文章!