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


PHP stripslashesRecursive函数代码示例

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


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

示例1: stripslashesRecursive

 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;
 }
开发者ID:padro1617,项目名称:cmfx,代码行数:13,代码来源:index.php

示例2: _initialize

 function _initialize()
 {
     header("Content-type: text/html; charset=utf-8");
     //模拟关闭magic_quotes_gpc 不关闭有时视频用不起
     if (get_magic_quotes_gpc()) {
         $_GET = stripslashesRecursive($_GET);
         $_POST = stripslashesRecursive($_POST);
         $_COOKIE = stripslashesRecursive($_COOKIE);
     }
     import('ORG.Util.Cookie');
     //先检查cookie
     if (!Cookie::is_set($_SESSION['cookietime'])) {
         redirect(PHP_FILE . C('USER_AUTH_GATEWAY'));
     } else {
         //保存cookie信息
         Cookie::set($_SESSION['cookietime'], '1', 60 * 60 * 3);
     }
     // 用户权限检查
     if (C('USER_AUTH_ON') && !in_array(MODULE_NAME, explode(',', C('NOT_AUTH_MODULE')))) {
         import('ORG.Util.RBAC');
         if (!RBAC::AccessDecision()) {
             //检查认证识别号
             if (!$_SESSION[C('USER_AUTH_KEY')]) {
                 //跳转到认证网关
                 redirect(PHP_FILE . C('USER_AUTH_GATEWAY'));
             }
             // 没有权限 抛出错误
             if (C('RBAC_ERROR_PAGE')) {
                 // 定义权限错误页面
                 redirect(C('RBAC_ERROR_PAGE'));
             } else {
                 if (C('GUEST_AUTH_ON')) {
                     $this->assign('jumpUrl', PHP_FILE . C('USER_AUTH_GATEWAY'));
                 }
                 // 提示错误信息
                 $this->error(L('_VALID_ACCESS_'));
             }
         }
     }
 }
开发者ID:babyhuangshiming,项目名称:webserver,代码行数:40,代码来源:CommonAction.class.php

示例3: stripslashesRecursive

 /**
  * Strips slashes from each element of an array using stripslashes().
  *
  * @param  mixed $var
  * @return mixed
  */
 protected static function stripslashesRecursive($var)
 {
     if (!is_array($var)) {
         return stripslashes(strval($var));
     }
     foreach ($var as $key => $val) {
         $var[$key] = is_array($val) ? stripslashesRecursive($val) : stripslashes(strval($val));
     }
     return $var;
 }
开发者ID:bgame-hunter,项目名称:temars-eve-api,代码行数:16,代码来源:Uri.php


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