- PHP 手册
- 函数参考
- 数据库扩展
- 针对各数据库系统对应的扩展
- tokyo_tyrant
- TokyoTyrant
TokyoTyrant::stat
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::stat — Get statistics
说明
public TokyoTyrant::stat ( void ) : arrayReturns statistics of the remote database
参数
此函数没有参数。
返回值
Returns an array of key value pairs describing the statistics
范例
Example #1 TokyoTyrant::stat() example
<?php
$tt = new TokyoTyrant("localhost");
var_dump($tt->stat());
?>
以上例程的输出类似于:
array(19) { ["version"]=> string(6) "1.1.28" ["libver"]=> string(3) "311" ["protver"]=> string(4) "0.91" ["os"]=> string(5) "Linux" ["time"]=> string(17) "1247358357.665630" ["pid"]=> string(5) "14348" ["sid"]=> string(8) "59025947" ["type"]=> string(9) "on-memory" ["path"]=> string(1) "*" ["rnum"]=> string(1) "4" ["size"]=> string(6) "262856" ["bigend"]=> string(1) "0" ["fd"]=> string(1) "5" ["loadavg"]=> string(8) "0.000000" ["memsize"]=> string(8) "77328384" ["memrss"]=> string(7) "1183744" ["ru_real"]=> string(13) "162776.042152" ["ru_user"]=> string(8) "0.476029" ["ru_sys"]=> string(8) "8.652540" }
参见
- Classname::Method()
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/tokyotyrant.stat.php