Lines Matching defs:path
19 protected $path;
38 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null)
40 if (!$path) {
45 $this->path = isset($bits['path']) ? $bits['path'] : '/';
47 // Make absolutely sure we have a path
48 if (!$this->path) {
49 $this->path = '/';
53 $this->path .= '?' . $bits['query'];
57 $this->path = $path;
73 $request = "POST {$this->path} HTTP/1.0$r";