PHP中exec函数和shell_exec函数的区别

网络编程 2021-07-05 09:50www.168986.cn编程入门
这篇文章主要介绍了PHP中exec函数和shell_exec函数的区别,这两个函数是非常危险的函数,一般情况都是被禁用的,特殊情况下也会使用,需要的朋友可以参考下

这两个函数都是执行Linux命令函数,不同的是获取返回结果不一样,exec只能获取一行数据,shell_execu则可以获取全部数据。

假如脚本路径下有如下文件:

代码如下:

-bash-4.1# ll
总用量 12
-rw-rw-r--. 1 web 133  7月 16 15:00 a.php
-rw-r--r--. 1 lee web  59  2月 29 17:05 b.php
-rw-r--r--. 1 lee web  81  3月  8 17:00 c.php

exec例子
代码如下:

<?php
/
  exec与shell_exec的区别
  琼台博客
 /
$data = exec('/bin/ls -l');
echo '<pre>';
print_r($data);
echo '</pre>';
?>

执行结果
代码如下:

-rw-r--r--. 1 lee web  81 Mar  8 17:00 c.php

shell_exec例子
代码如下:

<?php
/
  exec与shell_exec的区别
  琼台博客
 /
$data = shell_exec('/bin/ls -l');
echo '<pre>';
print_r($data);
echo '</pre>';
?>

执行结果
代码如下:

total 12
-rw-rw-r--. 1 web 139 Jul 16  2012 a.php
-rw-r--r--. 1 lee web  59 Feb 29 17:05 b.php
-rw-r--r--. 1 lee web  81 Mar  8 17:00 c.php

所以平时使用exec函数的童鞋注意了,如果你需要获取全部返回信息,就应该使用shell_exec函数,,如果命令执行结果只有一行返回信息,那么使用哪个都无所谓。

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by