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

php的magic_quotes_gpc动态关闭无效的解决方法

程序员文章站 2022-05-21 15:13:55
...
  1. if (ini_get('magic_quotes_gpc')) {
  2. function stripslashesRecursive(array $array)
  3. {
  4. foreach ($array as $k => $v) {
  5. if (is_string($v)) {
  6. $array[$k] = stripslashes($v);
  7. } else if (is_array($v)) {
  8. $array[$k] = stripslashesRecursive($v);
  9. }
  10. }
  11. return $array;
  12. }
  13. $_GET = stripslashesRecursive($_GET);
  14. $_POST = stripslashesRecursive($_POST);
  15. }
  16. ?>
复制代码