Deprecated: Function set_magic_quotes_runtime() is deprecated
今天运行一个项目,报了如下的错误
Deprecated: Function set_magic_quotes_runtime() is deprecated in E:\www\demo.sanp.info\include\global.php on line 22
查了一下手册才知道
函数 set_magic_quotes_runtime() 在 PHP 5.3.0及之后的版本将被弃用
可以使用 ini_set(“magic_quotes_runtime”, 0) 这样的代码代替set_magic_quotes_runtime()