选择语言 :

 Module_HttpClient_Result::cookie

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