怎么样可以把 phpinfo()屏蔽掉?
程序员文章站
2022-12-26 15:50:37
q:怎么样可以把 phpinfo()屏蔽掉? a:路径:c:\winnt(or windows)\php.ini(nt和2000)c:\windows...
q:怎么样可以把 phpinfo()屏蔽掉?
a:路径:c:\winnt(or windows)\php.ini(nt和2000)c:\windows(95,98)
在 php.ini 配置文件里面有这个选项
disable_functions = ; this directive allows you to disable certain
; functions for security reasons. it receives
; a comma separated list of function names.
; this directive is *not* affected by whether
; safe mode is turned on or off.
改成
disble_functions = phpinfo
a:路径:c:\winnt(or windows)\php.ini(nt和2000)c:\windows(95,98)
在 php.ini 配置文件里面有这个选项
disable_functions = ; this directive allows you to disable certain
; functions for security reasons. it receives
; a comma separated list of function names.
; this directive is *not* affected by whether
; safe mode is turned on or off.
改成
disble_functions = phpinfo
上一篇: php 获取完整url地址
下一篇: php 各种应用乱码问题的解决方法