今天在把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);
即可解析了。
新聞熱點
疑難解答