PHP Deprecated: Directive 'magic_quotes_gpc' is deprecated in PHP 5.3
程序员文章站
2022-05-08 12:25:01
...
PHP Deprecated: Directive 'magic_quotes_gpc' is deprecated in PHP 5.3 and greater in Unknown on line 0
配置文件迁移
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 5.3 开始,为了更好的向 PHP 的未来版本(PHP6) 过渡,将未来不再支持的函数标记为 DEPRECATED。在代码中使用这些函数,将毫不留情的在页面中显示警告信息:“使用了过时的函数…”,诸如此类。
那么如何面向未来,让现有的 PHP 程序平滑的向下一代 PHP 引擎过渡呢?配置文件迁移
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中,做如下的设置即可。
magic_quotes_gpc = Off
上一篇: 不错的mysql联表多表查询_MySQL
下一篇: 数据库操作视图
推荐阅读
-
解决php用mysql方式连接数据库出现Deprecated报错问题
-
PHP提示Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法
-
解决php用mysql方式连接数据库出现Deprecated报错问题
-
php5.3提示Function ereg() is deprecated Error问题解决方法
-
php用mysql方式连接数据库出现Deprecated报错
-
php提示Call-time pass-by-reference has been deprecated in的解决方法[已测]
-
session在php5.3中的变化 session_is_registered() is deprecated in
-
PHP提示Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法
-
php去除deprecated的实例方法
-
PHP提示Deprecated: mysql_connect(): The mysql extension is dep_PHP