如何屏蔽php中的phpinfo()函数

如题所述

配置php环境的时候往往都会写phpinfo();这个函数来测试php环境是否安装成功,但往往这个函数也会给系统带来安全隐患,所以要关掉这个函数。
修改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

重启apache就能实现屏蔽phpinfo();函数了。
温馨提示:答案为网友推荐,仅供参考
第1个回答  推荐于2017-11-26
下面介绍一种方法: 修改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 重启apache就能实现屏蔽phpinfo();函数了。本回答被提问者采纳

相关了解……

你可能感兴趣的内容

本站内容来自于网友发表,不代表本站立场,仅表示其个人看法,不对其真实性、正确性、有效性作任何的担保
相关事宜请发邮件给我们
© 非常风气网