用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

PHP调用linux命令详细说明

时间:2015-01-23  来源:西部数据  作者:西部数据

在php中调用linux命令的函数是

string exec(string command,string[array],int[return_var]); 

如:exec( "vpopmail ");echo exec('whoami');   再看一实例,代码如下:
  1. function exec_enabled() { 
  2.   $disabled = explode(', 'ini_get('disable_functions')); 
  3.   return !in_array('exec'$disabled); 
  4. <?php  
  5. $tmp = exec("c:\Image\gm.exe convert c:\Image\file1.tiff c:\Image\file1.jpg"$results);  
  6. ?> 

还有一种命令是:php通过函数system()调用系统命令.

string system ( string $command [, int &$return_var ] )

实例:system('asterisk -vvvvvvvvvvvc');

system()是一样的函数C的,它执行给定的命令和输出结果的版本,该system()的调用也尝试自动刷新网页服务器的输出缓冲器在每个输出行如果PHP运行作为服务器模块,如果你需要执行一个命令,并已全部通过直接从背面没有任何干扰的命令数据,使用passthru()函数.

  1. $last_line = system('ls'$retval); 
  2. function my_exec($cmd$input='')  
  3.          {$proc=proc_open($cmdarray(0=>array('pipe''r'), 1=>array('pipe''w'), 2=>array('pipe''w')), $pipes);  
  4.           fwrite($pipes[0], $input);fclose($pipes[0]);  
  5.           $stdout=stream_get_contents($pipes[1]);fclose($pipes[1]);  
  6.           $stderr=stream_get_contents($pipes[2]);fclose($pipes[2]);  
  7.           $rtn=proc_close($proc);  
  8.           return array('stdout'=>$stdout,  
  9.                        'stderr'=>$stderr,  
  10.                        'return'=>$rtn  
  11.                       );  
  12.          } //开源代码phpfensi.com 
  13. var_export(my_exec('echo -e $(</dev/stdin) | wc -l''h\nel\nlo')); 

实例三,代码如下:

  1. $cmd = "date"
  2.  
  3.    $output = system($cmd);  
  4.    printf("System Output: $output "); 
  5.  
  6.    exec($cmd$results);  
  7.    printf("Exec Output: {$results[0]} "); 

php调用linux命令的权限问题

你可以使用定时任务执行你要调用的php,这时的权限就是root,php通过函数system()调用系统命令.

php一般是以apache用户身份去执行的,把apache加入到存储你文件的父文件夹属组里去,然后改该父文件夹权限为775,这样属组成员就有写的权限,而apache属于这个组就可以改写该目录下所有文件的权限,当然,属组最好不要是root,你可以为该文件夹改个其它普通用户组.

改apache/php的运行用户方法不安全.

来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门