Heim >Backend-Entwicklung >PHP-Tutorial >Deprecated: Function set_magic_quotes_runtime()_PHP教程

Deprecated: Function set_magic_quotes_runtime()_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:56:29996Durchsuche

今天把php版本升级了一下,突然就出现了Deprecated: Function set_magic_quotes_runtime() is deprecated 错误,下面我们总结了

原因分析:

最近升级了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);

这样问题就解决了。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632181.htmlTechArticle今天把php版本升级了一下,突然就出现了Deprecated: Function set_magic_quotes_runtime() is deprecated错误,下面我们总结了 原因分析: 最近升级了PHP版本...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn