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


PHP Framework::limpiarEntrada方法代码示例

本文整理汇总了PHP中Framework::limpiarEntrada方法的典型用法代码示例。如果您正苦于以下问题:PHP Framework::limpiarEntrada方法的具体用法?PHP Framework::limpiarEntrada怎么用?PHP Framework::limpiarEntrada使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Framework的用法示例。


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

示例1: __construct

 public function __construct()
 {
     if (isset($_GET['url'])) {
         #Obtener la URL solicitada
         $url = filter_input(INPUT_GET, 'url', FILTER_SANITIZE_URL);
         $url = explode('/', $url);
         $url = array_filter($url);
         #Convertir la URL a nombres de objetos del sistema
         $this->_controlador = strtolower(array_shift($url));
         if ($this->_controlador == "ejecuta") {
             $url = str_replace(substr($_GET['url'], strpos($_GET['url'], "/ejecuta/") + 8), Framework::Decrypt(substr($_GET['url'], strpos($_GET['url'], "/ejecuta/") + 8)), $_GET['url']);
             $url = explode('/', $url);
             $url = array_filter($url);
             $this->_controlador = strtolower(array_shift($url));
             $this->_metodo = strtolower(array_shift($url));
             $this->_argumentos = $url;
         } else {
             $this->_metodo = strtolower(array_shift($url));
             $this->_argumentos = $url;
         }
     }
     #Limpiar parametros recibidos
     $this->_argumentos = Framework::limpiarEntrada($this->_argumentos);
     $_POST = Framework::limpiarEntrada($_POST);
     $_GET = Framework::limpiarEntrada($_GET);
     #Inicializar los atributos no recibidos en la URL
     if (!$this->_controlador) {
         $this->_controlador = DEFAULT_CONTROLLER;
     }
     if (!$this->_metodo) {
         $this->_metodo = 'index';
     }
     if (!$this->_argumentos) {
         $this->_argumentos = array();
     }
 }
开发者ID:sincco,项目名称:sitios-lineales-inova,代码行数:36,代码来源:Peticion.php

示例2: limpiarEntrada

 public static function limpiarEntrada($valor)
 {
     $_busquedas = array('@<script[^>]*?>.*?</script>@si', '@<[\\/\\!]*?[^<>]*?>@si', '@<style[^>]*?>.*?</style>@siU', '@<![\\s\\S]*?--[ \\t\\n\\r]*>@');
     if (is_array($valor)) {
         foreach ($valor as $_key => $_value) {
             $valor[$_key] = Framework::limpiarEntrada($_value);
             #Recursivo para arreglos
         }
     } else {
         $valor = preg_replace($_busquedas, '', $valor);
         $valor = filter_var($valor, FILTER_SANITIZE_STRING);
         if (get_magic_quotes_gpc()) {
             $valor = stripslashes($valor);
         }
     }
     return $valor;
 }
开发者ID:sincco,项目名称:sitios-lineales-inova,代码行数:17,代码来源:Framework.php


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