本文介绍了php.ini中没有让我disable_functions选项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我把这个php.ini文件中:
I put this in the php.ini file:
disable_functions="popen,exec,system,passthru,proc_open,shell_exec,show_source,phpinfo"
不过,我仍然可以打电话给他们(测试exec和了shell_exec。我已经重新启动Web服务器几次。
But I can still call them (tested exec and shell_exec. I have restarted the webserver several times.
(windows下)。
(under windows).
推荐答案
尝试删除双引号:
disable_functions=popen,exec,system,passthru,proc_open,shell_exec,show_source,phpinfo
这篇关于php.ini中没有让我disable_functions选项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!