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