I found that by not having a trailing slash (e.g. "http://www.google.com"), HttpRequest would tack on the URI of the script I was currently accessing.
An easy way to prevent this from happening is to include a trailing slash in the url. This way, "http://www.google.com" becomes "http://www.google.com/".
HttpRequest::__construct
(PECL pecl_http:0.10.0-1.5.5)
HttpRequest::__construct — HttpRequest constructor
Descrizione
public
void HttpRequest::__construct
([ string $url
[, int $request_method = HTTP_METH_GET
[, array $options
]]] )
Instantiate a new HttpRequest object.
Elenco dei parametri
- url
-
the target request url
- request_method
-
the request method to use
- options
-
an associative array with request options
Errori/Eccezioni
Throws HttpException.
HttpRequest::__construct
andychr17 at hotmail dot com
29-Jun-2008 07:34
29-Jun-2008 07:34
