這裏只演示一些普通的shell命令,一些須要root用戶權限執行的命令,請參考:php以root權限執行shell命令php
php執行shell命令,能夠使用下面幾個函數:html
string system ( string $command [, int &$return_var ] ) string exec ( string $command [, array &$output [, int &$return_var ]] ) void passthru ( string $command [, int &$return_var ] )
注意的是:這三個函數在默認的狀況下,都是被禁止了的,若是要使用這幾個函數,就要先修改php的配置文件php.ini,查找關鍵字disable_functions,將這一項中的這幾個函數名刪除掉,而後注意重啓apache。shell
首先看一下system()和passthru()兩個功能相似,能夠互換:
<?php $shell = "ls -la"; echo "<pre>"; system($shell, $status); echo "</pre>"; //注意shell命令的執行結果和執行返回的狀態值的對應關係 $shell = "<font color='red'>$shell</font>"; if( $status ){ echo "shell命令{$shell}執行失敗"; } else { echo "shell命令{$shell}成功執行"; } ?>
執行結果以下:apache
注意,system()會將shell命令執行以後,立馬顯示結果,這一點會比較不方便,由於咱們有時候不須要結果立馬輸出,甚至不須要輸出,因而能夠用到exec()bash
exec()的使用示例:
<?php $shell = "ls -la"; exec($shell, $result, $status); $shell = "<font color='red'>$shell</font>"; echo "<pre>"; if( $status ){ echo "shell命令{$shell}執行失敗"; } else { echo "shell命令{$shell}成功執行, 結果以下<hr>"; print_r( $result ); } echo "</pre>"; ?>
運行結果以下:函數