Home
last modified time | relevance | path

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

/PHP-7.3/
H A Dserver-tests.php235 public $urlparts = NULL; variable in HTTPRequest
265 $this->urlparts = @parse_url($URL);
285 if ( ! is_array($this->urlparts) ) {
288 if (!isset($this->urlparts['host'])) {
291 if (!isset($this->urlparts['port'])) {
292 $this->urlparts['port'] = 80;
294 if (!isset($this->urlparts['path']) || !$this->urlparts['path'])
295 $this->urlparts['path'] = '/';
325 $fullpath = $this->urlparts['path'].
326 (isset($this->urlparts['query'])?'?'.$this->urlparts['query']:'').
[all …]

Completed in 8 milliseconds