首页 > 其他 > 网站日记>正文

php中打开exec命令

提示: 阅读权限:公开  
一般的,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);

?>

上一篇:【帝国cms二开笔记】实现上传pdf,word,jpg等文件后点击文章直接打开

下一篇:linux下安装中文字体

tags: php 打开 exec 命令

返回首页

相关

热门

站内直通车

[!--temp.bottomnav--]
返回顶部