php的magic_quotes_gpc动态关闭无效的解决方法 程序员文章站 2022-05-02 12:45:14 ... if (ini_get('magic_quotes_gpc')) { function stripslashesRecursive(array $array) { foreach ($array as $k => $v) { if (is_string($v)) { $array[$k] = stripslashes($v); } else if (is_array($v)) { $array[$k] = stripslashesRecursive($v); } } return $array; } $_GET = stripslashesRecursive($_GET); $_POST = stripslashesRecursive($_POST); } ?> 复制代码 相关标签: php的magic_quotes_gpc动态关闭无效的解决方法 上一篇: PHP数组内存耗用太多如何解决 下一篇: 多维数组去重和查找 推荐阅读 php 字符串中的 换行符无效、不能换行的解决方法 jQuery移除tr无效的解决方法(tr是动态添加) php 字符串中的 换行符无效、不能换行的解决方法 PHP动态编译出现Cannot find autoconf的解决方法 php ob_flush,flush在ie中缓冲无效的解决方法 php 字符串中的 换行符无效、不能换行的解决方法 PHP中file_exists()判断中文文件名无效的解决方法 jQuery移除tr无效的解决方法(tr是动态添加) thinkphp中session和cookie无效的解决方法_php实例 php 字符串中的n换行符无效、不能换行的解决方法_PHP教程