public function getQuery() { if ($this->_query) { return $this->_query; } $this->_query = $this->filter_params(parent::getQuery()); return $this->_query; }
public function __construct($request_uri = null, $base_uri = null) { parent::__construct($request_uri, $base_uri); // 解析Url的GET参数 $this->_initParseRequestUri($request_uri); // 默认使用GET请求 $this->setMethod('Get'); // 手动分配路由,若已经继承Yaf\Request\Http类,不需要手动路由; // \Yaf\Dispatcher::getInstance()->getRouter()->route($this); // 初始化一个新的测试请求时,清空模板 \YafUnit\View::getInstance()->clear(); }