MongoHybrid\Client::hexists PHP Méthode

hexists() public méthode

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