当前位置:Gxlcms > PHP教程 > phpset_magic_quotes_runtime()函数过时解决方法_php技巧

phpset_magic_quotes_runtime()函数过时解决方法_php技巧

时间:2021-07-01 10:21:17 帮助过:4人阅读

把函数:

set_magic_quotes_runtime($new_setting);

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

人气教程排行