pullAll() публичный Метод

Remove all elements matching any of the given values from the current array field.
См. также: Builder::pullAll()
См. также: http://docs.mongodb.org/manual/reference/operator/pullAll/
public pullAll ( array $values )
$values array
Пример #1
0
 /**
  * Remove all elements matching any of the given values from the current
  * array field.
  *
  * @see Expr::pullAll()
  * @see http://docs.mongodb.org/manual/reference/operator/pullAll/
  * @param array $values
  * @return self
  */
 public function pullAll(array $values)
 {
     $this->expr->pullAll($values);
     return $this;
 }