Пример #1
0
 public function init()
 {
     $this->_params = $_GET;
     $this->_params = array_merge($_POST, $this->_params);
     $this->_safeParams = F_Helper_Array::htmlspecialchars($this->_params);
     if (isset(Flow::$cfg['safe_input']) && Flow::$cfg['safe_input']) {
         unset($_GET);
         unset($_POST);
         unset($_REQUEST);
     }
 }