|
Zookeeper::getGets the data associated with a node synchronously 説明
public
string Zookeeper::get(
string $path,callable $watcher_cb = null,array &$stat = null,int $max_size = 0) パラメータ
戻り値Returns the data on success, and false on failure. エラー / 例外This method emits PHP error/warning when parameters count or types are wrong or fail to get value from node. 警告
Since version 0.3.0, this method emits ZookeeperException and it's derivatives. 例例1 Zookeeper::get example Get value from node. 上の例の出力は以下となります。 nodevalue 例2 Zookeeper::get stat example Get node stat info. 上の例の出力は以下となります。
array(11) {
["czxid"]=>
float(0)
["mzxid"]=>
float(0)
["ctime"]=>
float(0)
["mtime"]=>
float(0)
["version"]=>
int(0)
["cversion"]=>
int(-2)
["aversion"]=>
int(0)
["ephemeralOwner"]=>
float(0)
["dataLength"]=>
int(0)
["numChildren"]=>
int(2)
["pzxid"]=>
float(0)
}
参考
|