Deprecated: Function set_magic_quotes_runtime() is deprecated

前端之家收集整理的这篇文章主要介绍了Deprecated: Function set_magic_quotes_runtime() is deprecated前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天在把PHP升级之后运行一个页面出现了Deprecated: Function set_magic_quotes_runtime() is deprecated in F:wwwrootmongodbmanageapp.PHP on line 13错误,后来百度了才知道原因高版本的PHP把set_magic_quotes_runtime去了,官方提供的解决办法:

  1. //把 
  2. set_magic_quotes_runtime(0);  
  3. //替代成 
  4. ini_set("magic_quotes_runtime",0); 

即可解析了。

猜你在找的PHP相关文章