Doctrine\MongoDB\Query\Builder::withinCenterSphere PHP 메소드

withinCenterSphere() 공개 메소드

Add $within criteria with a $centerSphere shape to the query.
또한 보기: Builder::geoWithinCenterSphere()
또한 보기: Expr::withinCenterSphere()
또한 보기: http://docs.mongodb.org/manual/reference/operator/centerSphere/
사용 중단: 1.1 MongoDB 2.4 deprecated $within in favor of $geoWithin
public withinCenterSphere ( float $x, float $y, float $radius )
$x float
$y float
$radius float
    public function withinCenterSphere($x, $y, $radius)
    {
        $this->expr->withinCenterSphere($x, $y, $radius);
        return $this;
    }