(PECL mongo >=0.9.0)
MongoCollection::__toString — String representation of this collection
이 함수는 인수가 없습니다.
Returns the full name of this collection.
Example #1 MongoCollection::__toString() example
<?php
$m = new Mongo();
$c = $m->selectDB("foo")->selectCollection("bar.baz");
echo "Working with collection $c.";
?>
위 예제의 출력 예시:
Working with collection foo.bar.baz.