SimpleHttpRequest::__construct PHP 메소드

__construct() 공개 메소드

These include proxy information, URL, cookies, headers, request method and choice of encoding.
public __construct ( SimpleRoute $route, SimpleFormEncoding $encoding )
$route SimpleRoute Request route.
$encoding SimpleFormEncoding Content to send with request.
    public function __construct($route, $encoding)
    {
        $this->cookies = array();
        $this->encoding = $encoding;
        $this->headers = array();
        $this->route = $route;
    }