資源:http://php-cli.com/php-cli-tutorial.shtml
寫個php檔案
<code><span>sudo</span> vim /var/www/html/a.php</code>
檔案開頭寫上解釋器
<code>#!/usr/bin/php <span><span><?php</span><span>include</span>(<span>'...'</span>); <span>/*we can include orther *.php */</span><span>echo</span> `ls -al`; <span>/* exe the linux command with `` */</span><span>?></span></span></code>
改個權限直接執行
<code>-<span>>sudo chmod <span>777</span> /var/www/html/a.php </span>-<span>>./a.php </span></code>
等待命令列輸入:$name = fgets(STDIN); //程式暫停在這裡,等待輸入
echo getcwd() .”/n”; //取得目前腳本路徑以上就介紹了php cli 命令列中的php,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。