We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version: 0.6.4 method: public Zookeeper::get ( string $path [, callable $watcher_cb = NULL [, array &$stat = NULL [, int $max_size = 0 ]]] ) : string
Hello, I want to ask how the third param $stat is? Can show me an example?
The text was updated successfully, but these errors were encountered:
<?php $zookeeper = new Zookeeper('localhost:2181'); $stat = []; $zookeeper->get('/zookeeper', null, $stat); var_dump($stat);
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) }
Sorry, something went wrong.
<?php $zookeeper = new Zookeeper('localhost:2181'); $stat = []; $zookeeper->get('/zookeeper', null, $stat); var_dump($stat); 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) }
Thank you so much!
No branches or pull requests
version: 0.6.4
method: public Zookeeper::get ( string $path [, callable $watcher_cb = NULL [, array &$stat = NULL [, int $max_size = 0 ]]] ) : string
Hello, I want to ask how the third param $stat is? Can show me an example?
The text was updated successfully, but these errors were encountered: