Phalcon\Db\Adapter\MongoDB\Database::__get PHP 메소드

__get() 공개 메소드

Note: collections whose names contain special characters (e.g. ".") may be selected with complex syntax (e.g. $database->{"system.profile"}) or {@link selectCollection()}.
또한 보기: http://php.net/oop5.overloading#object.get
또한 보기: http://php.net/types.string#language.types.string.parsing.complex
public __get ( string $collectionName ) : Collection
$collectionName string Name of the collection to select
리턴 Collection
    public function __get($collectionName)
    {
        return $this->selectCollection($collectionName);
    }