MongoHybrid\Client::hexists PHP Method

hexists() public method

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