屏蔽phpinfo()函数 的方法_PHP教程
程序员文章站
2022-05-01 17:17:23
...
在 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
上一篇: 新手上路开车技巧 PHP新手上路(三)
下一篇: [PHP]PHPUnit入门之三
推荐阅读
-
php获取Google机器人访问足迹的方法,google机器人_PHP教程
-
php中把美国时间转为北京时间的自定义函数分享,美国北京时间_PHP教程
-
php环境配置及调试配置的方法_PHP教程
-
php获取当前文件所有执行的函数和类_PHP教程
-
Yii使用migrate命令执行sql语句的方法,yiimigrate_PHP教程
-
php 启动时报错的简单解决方法_PHP教程
-
PHP清除网页病毒的方法_PHP教程
-
[开心学PHP100天(七)]精讲PHP构造函数:父亲和儿子的恩恩怨怨_PHP教程
-
yii实现级联下拉菜单的方法,yii实现下拉菜单_PHP教程
-
PHP关联数组实现根据元素值删除元素的方法_PHP教程