当前位置: 首页>>代码示例>>PHP>>正文


PHP do_magic_quotes_gpc函数代码示例

本文整理汇总了PHP中do_magic_quotes_gpc函数的典型用法代码示例。如果您正苦于以下问题:PHP do_magic_quotes_gpc函数的具体用法?PHP do_magic_quotes_gpc怎么用?PHP do_magic_quotes_gpc使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了do_magic_quotes_gpc函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: do_magic_quotes_gpc

  function do_magic_quotes_gpc(&$ar) {
    if (!is_array($ar)) return;

    while (list($key, $value) = each($ar)) {
      if (is_array($value)) {
        do_magic_quotes_gpc($value);
      } else {
        $ar[$key] = addslashes($value);
      }
    }
  }
开发者ID:BackupTheBerlios,项目名称:oos-svn,代码行数:11,代码来源:function_compatibility.php

示例2: do_magic_quotes_gpc

function do_magic_quotes_gpc(&$ar)
{
    if (!is_array($ar)) {
        return false;
    }
    while (list($key, $value) = each($ar)) {
        if (is_array($ar[$key])) {
            do_magic_quotes_gpc($ar[$key]);
        } else {
            $ar[$key] = addslashes($value);
        }
    }
    //060817 module patch by Bill Kellum of Sounds Good Productions
    reset($ar);
}
开发者ID:eosc,项目名称:EosC-2.3,代码行数:15,代码来源:compatibility.php

示例3: ob_start

        } else {
            include DIR_WS_FUNCTIONS . 'gzip_compression.php';
            ob_start();
            ob_implicit_flush();
        }
    } else {
        ini_set('zlib.output_compression_level', GZIP_LEVEL);
    }
}
// set the HTTP GET parameters manually if search_engine_friendly_urls is enabled
if (SEARCH_ENGINE_FRIENDLY_URLS == 'true') {
    if (strlen(getenv('PATH_INFO')) > 1) {
        $GET_array = array();
        $PHP_SELF = str_replace(getenv('PATH_INFO'), '', $PHP_SELF);
        $vars = explode('/', substr(getenv('PATH_INFO'), 1));
        do_magic_quotes_gpc($vars);
        for ($i = 0, $n = sizeof($vars); $i < $n; $i++) {
            if (strpos($vars[$i], '[]')) {
                $GET_array[substr($vars[$i], 0, -2)][] = $vars[$i + 1];
            } else {
                $HTTP_GET_VARS[$vars[$i]] = $vars[$i + 1];
            }
            $i++;
        }
        if (sizeof($GET_array) > 0) {
            while (list($key, $value) = each($GET_array)) {
                $HTTP_GET_VARS[$key] = $value;
            }
        }
    }
}
开发者ID:grum1965,项目名称:Plaster-Ceiling-Roses,代码行数:31,代码来源:application_top.php


注:本文中的do_magic_quotes_gpc函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。