Home > php教程 > php手册 > Deprecated: Function set_magic_quotes_runtime() is deprecated

Deprecated: Function set_magic_quotes_runtime() is deprecated

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-25 16:52:25
Original
1071 people have browsed it

今天在把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);
Copy after login

即可解析了。


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template