LMongo\Query\Builder::truncate PHP 메소드

truncate() 공개 메소드

Drop the collection.
public truncate ( ) : void
리턴 void
    public function truncate()
    {
        $result = $this->connection->{$this->collection}->drop();
        if (1 == (int) $result['ok']) {
            return true;
        }
        return false;
    }
Builder