Home >php教程 >php手册 >Deprecated: Function set_magic_quotes_runtime()

Deprecated: Function set_magic_quotes_runtime()

WBOY
WBOYOriginal
2016-05-25 16:52:42934browse

原因分析:最近升级了PHP版本,新版本的PHP对set_magic_quotes_runtime()已经关闭在PHP5.3后此特性(set_magic_quotes_runtime())已经关闭,而且在PHP6中已经完全移除此特性。

解决办法:你可以注释或者删除掉出错的行,或者是在set_magic_quotes_runtime()前面加@符号,也可以在程序中如下操作:

find: set_magic_quotes_runtime(0);

replace: 

ini_set("magic_quotes_runtime", 0);

这样问题就解决了。

教程网址:

欢迎收藏∩_∩但请保留本文链接。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn