91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在PHP中執行linux命令

發布時間:2021-03-15 15:52:02 來源:億速云 閱讀:215 作者:Leah 欄目:開發技術

怎么在PHP中執行linux命令?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1,exec函數

<?php 
$test = "ls /tmp/test"; //ls是linux下的查目錄,文件的命令
exec($test,$array); //執行命令
print_r($array);
?>

返回結果如下:

[root@krlcgcms01 shell]# php ./exec.php 
Array 
( 
[0] => 1001.log 
[1] => 10.log 
[2] => 10.tar.gz 
[3] => aaa.tar.gz 
[4] => mytest 
[5] => test1101 
[6] => test1102 
[7] => weblog_2010_09 
)

2,system函數

<?php 
$test = "ls /tmp/test";
$last = system($test);
print "last: $last\n";
?>

返回結果:

[root@krlcgcms01 shell]# php system.php 
1001.log 
10.log 
10.tar.gz 
aaa.tar.gz 
mytest 
test1101 
test1102 
weblog_2010_09 
last:weblog_2010_09

3,passthru函數

<?php 
$test = "ls /tmp/test";
passthru($test);
?>

4,popen函數

<?php 
$test = "ls /tmp/test";
$fp = popen($test,"r"); //popen打一個進程通道

while (!feof($fp)) { //從通道里面取得東西
$out = fgets($fp, 4096);
echo $out; //打印出來
} 
pclose($fp);
?>

5,proc_open函數

<?php 
$test = "ls /tmp/test";
$array = array(
array("pipe","r"), //標準輸入 
array("pipe","w"), //標準輸出內容 
array("pipe","w") //標準輸出錯誤 
); 
$fp = proc_open($test,$array,$pipes); //打開一個進程通道
echo stream_get_contents($pipes[1]); //為什么是$pipes[1],因為1是輸出內容
proc_close($fp);
?>

6,shell_exec函數

<?php 
$test = "ls /tmp/test";
$out = shell_exec($test);
echo $out;
?>

popen,passthru,proc_open,shell_exec的返回結果如下:

[root@krlcgcms01 shell]# php test.php 
1001.log 
10.log 
10.tar.gz 
aaa.tar.gz 
mytest 
test1101 
test1102 
weblog_2010_09

關于怎么在PHP中執行linux命令問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

旺苍县| 永登县| 靖州| 南丰县| 翁源县| 西充县| 崇文区| 友谊县| 玛沁县| 凌云县| 涡阳县| 贞丰县| 鄱阳县| 台北县| 德清县| 威远县| 洛川县| 绥化市| 常宁市| 牟定县| 玛多县| 扬中市| 象州县| 万宁市| 通化市| 石狮市| 武宁县| 肥东县| 天祝| 柳河县| 广平县| 讷河市| 常熟市| 大冶市| 朝阳市| 额济纳旗| 陵水| 湖南省| 延吉市| 龙胜| 岳西县|