downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

HttpRequest::enableCookies> <HttpRequest::clearHistory
[edit] Last updated: Fri, 17 May 2013

view this page in

HttpRequest::__construct

(PECL pecl_http >= 0.10.0)

HttpRequest::__constructHttpRequest constructor

Descrizione

public 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.



add a note add a note User Contributed Notes HttpRequest::__construct - [2 notes]
up
0
RLK
2 years ago
You can use custom methods here if you use the undocumented HttpRequest::methodRegister()

<?php
HttpRequest
::methodRegister('foobar');
$r = new HttpRequest('http://www.php.net', HttpRequest::METH_FOOBAR);
?>
up
0
andychr17 at hotmail dot com
4 years ago
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/".

 
show source | credits | stats | sitemap | contact | advertising | mirror sites