yii\mongodb\Database::selectFileCollection PHP 메소드

selectFileCollection() 보호된 메소드

Selects GridFS collection with given prefix.
protected selectFileCollection ( string $prefix ) : Collection
$prefix string file collection prefix.
리턴 yii\mongodb\file\Collection file collection instance.
    protected function selectFileCollection($prefix)
    {
        return Yii::createObject(['class' => 'yii\\mongodb\\file\\Collection', 'database' => $this, 'prefix' => $prefix]);
    }