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中文網其他相關文章!