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)
HttpRequest::__construct — Constructeur de HttpRequest
Description
public
void HttpRequest::__construct
([ string $url
[, int $request_method= HTTP_METH_GET
[, array $options
]]] )
Instancie un nouvel objet HttpRequest.
Liste de paramètres
- url
-
L'URL cible de la requête
- request_method
-
la méthode de requête à utiliser
- options
-
un tableau associatif avec les options de la requête
Erreurs / Exceptions
Lance une exception HttpException.
HttpRequest::__construct
andychr17 at hotmail dot com
30-Jun-2008 02:34
30-Jun-2008 02:34
