Home  >  Article  >  Backend Development  >  php set_magic_quotes_runtime() function outdated solution_PHP tutorial

php set_magic_quotes_runtime() function outdated solution_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:36:37867browse

Replace the function:

set_magic_quotes_runtime($new_setting);

with:
ini_set("magic_quotes_runtime", $new_setting);

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/322073.htmlTechArticleReplace the function: set_magic_quotes_runtime($new_setting); with: ini_set("magic_quotes_runtime", $new_setting);.. .
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