當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。