TokyoTyrant::size

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrant::sizeReturns the size of the value

Descrierea

public TokyoTyrant::size ( string $key ) : int

Returns the size of a value by key

Parametri

key

The key of which size to fetch

Valorile întoarse

Returns the size of the key or throw TokyoTyrantException on error

Exemple

Example #1 TokyoTyrant::size() example

<?php
$tt 
= new TokyoTyrant("localhost");

$tt->put("test_key""12345");

echo 
$tt->size("test_key");
?>

Exemplul de mai sus va afișa:

5

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top