屏蔽phpinfo()函数 的方法
程序员文章站
2022-06-08 09:34:54
...
在 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
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
推荐阅读
-
jsreplace函数怎么用(sql语句replace的用法方法)
-
举例详解Python中的split()函数的使用方法
-
Python多线程编程(三):threading.Thread类的重要函数和方法
-
在Django的URLconf中进行函数导入的方法
-
js延迟1秒的方法(javascript延时函数)
-
Django中传递参数到URLconf的视图函数中的方法
-
优酷视频去广告代码是什么?优酷屏蔽广告代码的使用方法介绍
-
Python中的对象,方法,类,实例,函数用法分析
-
python实现在每个独立进程中运行一个函数的方法
-
函数中使用require_once问题深入探讨 优雅的配置文件定义方法推荐