一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

php提示Deprecated: Directive 'register_globals' is deprecated in PHP 5.3解决办法

时间:2016-09-05 编辑:简简单单 来源:一聚教程网


代码事下

I:\>cd www

I:\www>php a.php
PHP Deprecated:  Directive 'register_globals' is deprecated in PHP 5.3 and great
er in Unknown on line 0

Deprecated: Directive 'register_globals' is deprecated in PHP 5.3 and greater in
 Unknown on line 0

/*=================================================
====Name:dedecms 5.7 getshell                  ====
===================================================
====Usage:php  dede.php      ====
===================================================
====Team:C0dePlay  Team      ====
===================================================
====Author: Yaseng           ====
====Date: 2012-06-15 01:35:00                  ====
===================================================*/

I:\www>

原因分析

PHP 5.3 开始,配置文件 php.ini 中的一些配置将会在 PHP 执行时显示过时警告,这些配置将在 PHP6中不再存在,相关功能也将关闭。
define_syslog_variables
register_globals
register_long_arrays
safe_mode
magic_quotes_gpc
magic_quotes_runtime
magic_quotes_sybase

解决问题很简单

只需要在php.ini中,做如下的设置即可。

register_globals = Off

热门栏目