Home >Backend Development >PHP Tutorial >Deprecated: Function set_magic_quotes_runtime() is deprecate_PHP教程
Today, after upgrading php and running a page, an error Deprecated: Function set_magic_quotes_runtime() is deprecated in F:\wwwroot\mongodb\manage\app.php on line 13 appeared. Later, Baidu found out the reason for the higher version of php. I have removed set_magic_quotes_runtime, and I will look at the solution below.
Official solution:
代码如下 | 复制代码 |
//把 set_magic_quotes_runtime(0); //替代成 ini_set("magic_quotes_runtime",0); |
It can be parsed.