Ejemplo n.º 1
0
 /**
  * 
  * @static
  * @return void
  */
 public function __construct()
 {
     self::_detectURIString();
     self::$_get = $_GET;
     self::$_post = $_POST;
     self::$_files = $_FILES;
 }
Ejemplo n.º 2
0
	/**
	 * Fetches a filtered Post input
	 * 
	 * @return Input A filtered Input object based on $_POST
	 */
	public static function Post()
	{
		if (self::$_post==null)
			self::$_post=new Input($_POST);
		
		return self::$_post;
	}