选择语言 :

 Module_HttpClient::__construct

初始化

null Module_HttpClient::__construct( )
File: ./modules/httpclient/httpclient.class.php
function __construct()
{
    if (HttpClient::is_support_curl())
    {
        $this->type = HttpClient::TYPE_CURL;
    }
    else
    {
        $this->type = HttpClient::TYPE_Fsock;
    }
}