侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

怎么样可以把 phpinfo()屏蔽掉?

2023-12-21 星期四 / 0 评论 / 0 点赞 / 72 阅读 / 771 字

Q:怎么样可以把phpinfo()屏蔽掉? A:路径:C:/winnt(or windows)/php.ini(NT和2000)C:/windows(95,98) 在php.ini配置文件里面有这个选项 disable_

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 

广告 广告

评论区