Heim  >  Artikel  >  Backend-Entwicklung  >  Deprecated: Function set_magic_quotes_runtime() is deprecate_PHP教程

Deprecated: Function set_magic_quotes_runtime() is deprecate_PHP教程

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

今天在把php升级之后运行一个页面出现了Deprecated: Function set_magic_quotes_runtime() is deprecated in F:\\wwwroot\\mongodb\\manage\\app.php on line 13错误,后来百度了才知道原因高版本的php把set_magic_quotes_runtime去了,下面我来看解决办法。

官方提供的解决办法:

 代码如下 复制代码
//把
 
set_magic_quotes_runtime(0);
 
//替代成
 
ini_set("magic_quotes_runtime",0);

 
即可解析了。
 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632138.htmlTechArticle今天在把php升级之后运行一个页面出现了Deprecated: Function set_magic_quotes_runtime() is deprecated in F:\\wwwroot\\mongodb\\manage\\app.php on line 13错误,后来百...
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