bitsAnySet() 공개 메소드

Matches documents where any of the bit positions given by the query are set.
또한 보기: Builder::bitsAnySet()
또한 보기: https://docs.mongodb.org/manual/reference/operator/query/bitsAnySet/
public bitsAnySet ( integer | array | MongoBinData $value )
$value integer | array | MongoBinData
예제 #1
0
파일: Builder.php 프로젝트: alcaeus/mongodb
 /**
  * Matches documents where any of the bit positions given by the query are
  * set.
  *
  * @see Expr::bitsAnySet()
  * @see https://docs.mongodb.org/manual/reference/operator/query/bitsAnySet/
  * @param int|array|\MongoBinData $value
  * @return $this
  */
 public function bitsAnySet($value)
 {
     $this->expr->bitsAnySet($value);
     return $this;
 }