首頁  >  文章  >  php教程  >  Deprecated: Function set_magic_quotes_runtime() is deprecated

Deprecated: Function set_magic_quotes_runtime() is deprecated

WBOY
WBOY原創
2016-05-25 16:52:25962瀏覽

今天在把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);

即可解析了。


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn