MongoHybrid\Client::hexists PHP 메소드

hexists() 공개 메소드

Determine if a hash field exists
public hexists ( string $collection, string $key, string $field ) : boolean
$collection string
$key string
$field string
리턴 boolean
    public function hexists($collection, $key, $field)
    {
        $set = $this->getKey($collection, $key, []);
        return isset($set[$field]);
    }