SDK
SDK PHP v3.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

hstrlen #

Returns the string length of a field’s value in a hash.

[Redis documentation]


hstrlen(key, field, [options], callback) #

ArgumentsTypeDescription
keystringKey identifier
fieldstringHash field name
optionsJSON ObjectOptional parameters
callbackfunctionCallback

Options #

OptionTypeDescriptionDefault
queuablebooleanMake this request queuable or nottrue

Callback Response #

Returns the string length of a field's value.

Usage #

<?php
use \Kuzzle\Kuzzle;
$kuzzle = new Kuzzle('localhost');
try {
  $length = $kuzzle->memoryStorage()->hstrlen('key', 'field');
}
catch (ErrorException $e) {
}

Callback response:

3