Lines Matching full:get
19 protected $get = array(); variable in TestRequest
30 * Get a $_SERVER var
40 * Get a $_SESSION var
50 * Get a $_GET var
56 return $this->get[$key];
60 * Get a $_POST var
70 * Get the script that will execute the request
105 $this->get[$key] = $value;
130 $get = $_GET;
147 $_GET = $this->get;
174 $_GET = $get;
185 * This parses the given URI and sets any contained GET variables
189 * with all set GET variables.
204 $this->get = array_merge($params, $this->get);
205 if(count($this->get)) {
206 $query = '?' . http_build_query($this->get, '', '&');
233 * Simulate a GET request with the given variables
235 * @param array $get all the GET parameters to use
239 public function get($get = array(), $uri = '/doku.php') { function in TestRequest
240 $this->get = array_merge($this->get, $get);
241 $this->setServer('REQUEST_METHOD', 'GET');