Home
last modified time | relevance | path

Searched refs:urlparts (Results 1 – 1 of 1) sorted by relevance

/PHP-5.5/
H A Dserver-tests.php243 public $urlparts = NULL; variable in HTTPRequest
273 $this->urlparts = @parse_url($URL);
293 if ( ! is_array($this->urlparts) ) {
296 if (!isset($this->urlparts['host'])) {
299 if (!isset($this->urlparts['port'])) {
300 $this->urlparts['port'] = 80;
302 if (!isset($this->urlparts['path']) || !$this->urlparts['path'])
303 $this->urlparts['path'] = '/';
333 $fullpath = $this->urlparts['path'].
334 (isset($this->urlparts['query'])?'?'.$this->urlparts['query']:'').
[all …]

Completed in 6 milliseconds