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

andWhereAll() 공개 메소드

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