一般的,php没有打开exec或者shell_exec命令,执行包含这两个命令的语句,会警告:
shell_exec() has been disabled for security reasons in ...
处理方法:
打开生效的php.ini,搜索 disable_functions,会看到这样一句:
disable_functions = passthru,exec,system,chroot,chgrp,chown,shell_exec,popen,proc_open,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru
去掉其中的exec和shell_exec,保存后,重启php或者重载php配置。
如果使用宝塔面板的话,更加简单,他的php控制面板提供了禁用删除列表,方便增删操作。
以下命令是我最近要使用的:
1. 查看服务器cpu信息 lscpu 2.查看操作系统的信息 uname –a
<?php $command = 'uname -a 2>&1'; $retval = array(); exec($command, $retval, $status); print_r($retval);
?>
|