php执行linux命令的6个函数

一般情况下,很少会用php去执行linux命令,不过特殊情况下,你也许会用到这些函数。以前我知道有二个函数可以执行linux命令,一个是exec,一个是shell_exec。其实有很多的,结合手册内容,介绍以下6个函数。

1,exec函数

  1. <?php
  2. $test = "ls /tmp/test";   //ls是linux下的查目录,文件的命令
  3. exec($test,$array);       //执行命令
  4. print_r($array);
  5. ?>

返回结果如下:

  1. [[email protected] shell]# php ./exec.php
  2. Array
  3. (
  4. [0] => 1001.log
  5. [1] => 10.log
  6. [2] => 10.tar.gz
  7. [3] => aaa.tar.gz
  8. [4] => mytest
  9. [5] => test1101
  10. [6] => test1102
  11. [7] => weblog_2010_09
  12. )

2,system函数

  1. <?php
  2. $test = "ls /tmp/test";
  3. $last = system($test);
  4. print "last: $last\n";
  5. ?>

返回结果:

  1. [[email protected] shell]# php system.php
  2. 1001.log
  3. 10.log
  4. 10.tar.gz
  5. aaa.tar.gz
  6. mytest
  7. test1101
  8. test1102
  9. weblog_2010_09
  10. last:weblog_2010_09

3,passthru函数

  1. <?php
  2. $test = "ls /tmp/test";
  3. passthru($test);
  4. ?>

4,popen函数

  1. <?php
  2. $test = "ls /tmp/test";
  3. $fp = popen($test,"r");  //popen打一个进程通道
  4. while (!feof($fp)) {      //从通道里面取得东西
  5. $out = fgets($fp, 4096);
  6. echo  $out;         //打印出来
  7. }
  8. pclose($fp);
  9. ?>

5,proc_open函数

  1. <?php
  2. $test = "ls /tmp/test";
  3. $array =   array(
  4. array("pipe","r"),   //标准输入
  5. array("pipe","w"),   //标准输出内容
  6. array("pipe","w")    //标准输出错误
  7. );
  8. $fp = proc_open($test,$array,$pipes);   //打开一个进程通道
  9. echo stream_get_contents($pipes[1]);    //为什么是$pipes[1],因为1是输出内容
  10. proc_close($fp);
  11. ?>

6,shell_exec函数

  1. <?php
  2. $test = "ls /tmp/test";
  3. $out = shell_exec($test);
  4. echo $out;
  5. ?>

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

  1. [[email protected] shell]# php test.php
  2. 1001.log
  3. 10.log
  4. 10.tar.gz
  5. aaa.tar.gz
  6. mytest
  7. test1101
  8. test1102
  9. weblog_2010_09
时间: 2024-11-02 23:32:21

php执行linux命令的6个函数的相关文章

用python执行Linux命令

例1:在python中包装ls命令 #!/usr/bin/env python#python wapper for the ls commandimport subprocesssubprocess.call(["ls","-l"]) 在Linux中执行该命令 [[email protected] python]# python ls.pytotal 8-rwxrwxrwx 1 root root 415 Mar 18 11:40 a.py-rw-r--r-- 1 

PHP执行Linux命令行小例——文件压缩

前几天工作中,需要将3个txt文件,打包成*.zip down到本地…… 一开始,我和普通青年一样,想到用PHP内置的 ZipArchive,代码看起来应该是这样的: /*拆分成3个txt文件 分别是wow_1.txt wow_2.txt 和 wow_3.txt*/ $zip=new ZipArchive(); $zipfile='./Exl_file/wow.zip'; if($zip->open($zipfile,ZIPARCHIVE::CREATE)===TRUE){ $zip->add

使用Android平板编程,执行linux命令

android有一些应用支持开发, AIDE 介绍http://www.wandoujia.com/apps/com.aide.ui https://play.google.com/store/apps/details?id=com.aide.ui&hl=en Terminal IDE  介绍http://www.cnblogs.com/simpleyyt/archive/2012/11/24/GNU4Android.html 可以使用平板OTG连接键盘 执行linux命令 http://wen

Java程序执行Linux命令(JSP运行其他程序)

java程序中要执行linux命令主要依赖2个类:Process和Runtime 首先看一下Process类: ProcessBuilder.start() 和 Runtime.exec 方法创建一个本机进程,并返回 Process 子类的一个实例,该实例可用来控制进程并获得相关信息.Process 类提供了执行从进程输入.执行输出到进程.等待进程完成. 检查进程的退出状态以及销毁(杀掉)进程的方法. 创建进程的方法可能无法针对某些本机平台上的特定进程很好地工作,比如,本机窗口进程,守护进程,M

php执行linux命令:command not found

目前在SUSE系统上可以不使用命令的全路径.但是在CentOS上必须使用.如何设置环境变量,没辙! 摘自:http://blog.csdn.net/wfdtxz/article/details/7283512 #whereis ifconfig ifco #whereis ifconfig ifconfig: /sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz #echo $PATH /usr/local/bin:/usr/bin:/bin:/usr

Java中通过jsch来连接远程服务器执行linux命令

有时候你可能需要通过代码来控制执行linux命令实现某些功能. 针对这类问题可以使用JSCH来实现,具体代码如下: public class CogradientImgFileManager{ private static final Logger log = LoggerFactory.getLogger(CogradientImgFileManager.class); private static ChannelExec channelExec; private static Session

java通过ssh2远程连接计算机并执行linux命令的方法(转)

java通过ch.ethz.ssh2远程连接计算机并执行linux命令的方法实现 API详情:  http://www.ganymed.ethz.ch/ssh2/javadoc/ch/ethz/ssh2/package-summary.html jar包:  ganymed-ssh2-build210.jar    下载地址: http://www.ganymed.ethz.ch/ssh2/ 代码实现: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1

java执行linux命令

public class LinuxUtils { static Logger logger = Logger.getLogger(LinuxUtils.class); public static String exeCmd(String cmd) { logger.info(cmd); String returnString = ""; Runtime runTime = Runtime.getRuntime(); Process pro = null; StringBuffer s

Java 执行linux命令(转)

转自 http://blog.csdn.net/a19881029/article/details/8063758 java程序中要执行linux命令主要依赖2个类:Process和Runtime 首先看一下Process类: ProcessBuilder.start() 和 Runtime.exec 方法创建一个本机进程,并返回 Process 子类的一个实例, 该实例可用来控制进程并获得相关信息.Process 类提供了执行从进程输入.执行输出到进程.等待进程完成. 检查进程的退出状态以及销