httpd.conf:PHP,本地值不起作用
现在,当我运行 phpinfo() 时,我得到了这个: disable_functions:[local]=exec,[master]=shell_exec
但我仍然可以在放置 phpinfo
的文件中执行 exec
。为什么? Local 会覆盖 master,不是吗?我该如何解决这个问题?
问候, 凯文
I now have this when I run phpinfo():disable_functions: [local]=exec, [master]=shell_exec
But I still can execute exec
in that file where I put phpinfo
in. Why? Local does overwrite master, doesn't it? How can I fix this?
Regards,
Kevin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
disable_functions
< /strong> 指令只能在php.ini
中设置 - 所以,我猜 PHP 会忽略您的 local 值,在这种情况下。引用我链接到的手册页:
The
disable_functions
directive can only be set inphp.ini
-- so, I'm guessing your local value is just ignored by PHP, in this case.Quoting the manual page I linked to :