©
이 문서에서는 PHP 중국어 웹사이트 매뉴얼 풀어 주다
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::size — Returns the size of the value
$key
)Returns the size of a value by key
key
The key of which size to fetch
Returns the size of the key or throw TokyoTyrantException on error
Example #1 TokyoTyrant::size() example
<?php
$tt = new TokyoTyrant ( "localhost" );
$tt -> put ( "test_key" , "12345" );
echo $tt -> size ( "test_key" );
?>
以上例程会输出:
5