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

whereAll() 공개 메소드

Add an "$all comparison operation" clause to logical operation.
public whereAll ( string $column, array $value ) : LMongo\Query\Builder
$column string
$value array
리턴 LMongo\Query\Builder
    public function whereAll($column, array $value)
    {
        return $this->where($column, array('$all' => array_values($value)), 'first');
    }
Builder