void http\Client\Request::__construct([string $meth = NULL[, string $url = NULL[, array $headers = NULL[, http\Message\Body $body = NULL]]]])

Create a new client request message to be enqueued and sent by http\Client.

Params:

Throws:

Example:


<?php
$request 
= new http\Client\Request("GET""http://php.net/");
?>