PHP的版本为5.4
PHP代码如下:
<?php
exec('whoami', $r);
var_dump($r);
root用户在服务器终端使用php test.php
输出结果如下,是正确的
[[email protected] htdocs]# php test.php
array(1) {
[0]=>
string(4) "root"
}
但是在浏览器上输入http://192.168.x.x/test.php
输出为空。
感觉是linux服务器上的权限问题,但是又不知道哪个权限问题。
运行httpd的用户名为apache
------解决方案--------------------
whoami 显示登录名
浏览者是匿名(就是没有名字)访问网站的,所以显示为空是正确的
------解决方案--------------------
把错误输出 你就知道是不是权限问题了.