strlen #
Returns the length of a value stored at key
.
strlen(key, [options], callback) #
Arguments | Type | Description |
---|---|---|
key | string | Key identifier |
options | JSON Object | Optional parameters |
callback | function | Callback |
Options #
Option | Type | Description | Default |
---|---|---|---|
queuable | boolean | Make this request queuable or not | true |
Callback Response #
Returns an integer containing the length of a value.
Usage #
<?php
use \Kuzzle\Kuzzle;
$kuzzle = new Kuzzle('localhost');
try {
$length = $kuzzle->memoryStorage()->strlen('key');
}
catch (ErrorException $e) {
}
Callback response:
13
Edit this page on Github(opens new window)