欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php set_magic_quotes_runtime() 函数过时解决方法_PHP教程

程序员文章站 2022-04-19 15:30:42
...
把函数:

set_magic_quotes_runtime($new_setting);

替换成:
ini_set("magic_quotes_runtime", $new_setting);

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/322073.htmlTechArticle把函数: set_magic_quotes_runtime($new_setting); 替换成: ini_set("magic_quotes_runtime", $new_setting);...