示例#1
0
 public function __construct($db)
 {
     $this->cache = new cache($db, "googlemaps");
     parent::__construct($this->hostname);
 }
示例#2
0
文件: proxy.php 项目: Git-Host/proxy
 public function __construct($config, $host, $port = null)
 {
     $this->config = $config;
     parent::__construct($host, $port);
 }
示例#3
0
 public function __construct($payload = '')
 {
     parent::__construct();
     $this->payload = $payload;
 }
示例#4
0
 public function __construct($proxy_hostname, $host, $port = null)
 {
     $this->proxy_hostname = $proxy_hostname;
     parent::__construct($host, $port);
 }