コード例 #1
0
ファイル: Chill.php プロジェクト: keeto/chill
 /**
  * @param $host - (string) The CouchDB host server.
  */
 public function __construct($host)
 {
     parent::__construct();
     $this->host = rtrim($host, '/') . '/';
     self::$H = $this->host;
     $this->_handshake();
 }