__toString() 공개 메소드

String representation of this connection
public __toString ( ) : string
리턴 string - Returns hostname and port for this connection.
예제 #1
0
 public function __toString()
 {
     $this->initialize();
     return $this->mongo->__toString();
 }
예제 #2
0
파일: bug00850.php 프로젝트: badlamer/hhvm
<?php

$mc = new MongoClient("", array("connect" => false));
var_dump($mc->__toString());