选择语言 :

 Module_HttpClient_Result::header

null Module_HttpClient_Result::header( )
File: ./modules/httpclient/result.class.php
public function header($key = null)
{
    if ( null === $key )
    {
        return $this->headers;
    }
    else
    {
        return $this->headers[$key];
    }
}