很多人都知道有二個函數可以執行Linux命令,一個是exec,一個是shell_exec。其實有很多的,本文結合手冊內容,介紹以下6個函數能執行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函數
4,popen函數
5,proc_open函數
- <?PHP
- $test = "ls /tmp/test";
- $arrayarray = 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
有其他函數網友們可以給本站投稿