亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

PHP執行linux命令6個函數代碼實例

瀏覽:72日期:2022-09-08 16:49:27

一般情況下,很少會用php去執行linux命令,不過特殊情況下,你也許會用到這些函數。以前我知道有二個函數可以執行linux命令,一個是exec,一個是shell_exec。其實有很多的,結合手冊內容,介紹以下6個函數。

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: $lastn'; ?>

返回結果:

[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

我能發現的就這幾個函數,能執行linux下的命令,我想應當還有吧,歡迎大家補充。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: PHP
相關文章:
主站蜘蛛池模板: 在线视频不卡国产在线视频不卡 | 黄色网址视频 | 高清国产一级毛片国语 | 国产欧美精品国产国产专区 | 成人啪啪| 久久99热狠狠色一区二区 | 日韩精品福利在线 | 日韩欧美成人免费中文字幕 | 亚洲女精品一区二区三区 | 一级特黄aaa大片在线观看视频 | www.你懂的.com | 国产日本三级欧美三级妇三级四 | 久久网页 | 国产尤物二区三区在线观看 | 国产香港三级理论在线 | 亚洲色图150p | 国产v在线在线观看羞羞答答 | 国产在线观看福利一区二区 | 亚洲 欧美 国产 制服 动漫 | 国产精品久久做爰 | 免费在线观看黄色毛片 | 天天色图片 | 牛牛a级毛片在线播放 | 香蕉视频毛片 | 天天更新天天久久久更新影院 | 黄页网址大全免费观看不用 | 欧美亚洲视频一区 | a在线观看免费网址大全 | 国产欧美视频在线观看 | 亚洲综合色区图片区 | 国产一级特黄a大片99 | 国产精品一区二区久久精品 | 国内一级野外a一级毛片 | 成人久久网站 | 黄色网址免费 | 欧美 日本 国产 | 国产又黄不爽不遮挡视频 | 麻豆国产免费影片 | 精品国产视频在线观看 | 亚洲精品网站在线 | 日本视频高清免费观看xxx |