选择语言 :

 Core_HttpCall::__construct

null Core_HttpCall::__construct( )
File: ./core/classes/httpcall.class.php
public function __construct($group=null)
{
    if (!$group)$group = 'default';

    $this->group = $group;
    $this->hosts = Core::config('web_server_list.'.$group);

    if (!$this->hosts)
    {
        $this->hosts = array
        (
            $_SERVER["REMOTE_ADDR"].':'.$_SERVER["SERVER_PORT"],
        );
    }
}