Home >Backend Development >PHP Tutorial >Deprecated: Function set_magic_quotes_runtime() is deprecate_PHP教程

Deprecated: Function set_magic_quotes_runtime() is deprecate_PHP教程

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 10:56:531214browse

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.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632138.htmlTechArticleToday, after upgrading php, I ran a page and Deprecated: Function set_magic_quotes_runtime() is deprecated in F:\wwwroot \mongodb\manage\app.php on line 13 error, later...
Statement:
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