PHP code example of zookeeper / laravel-zookeeper

1. Go to this page and download the library: Download zookeeper/laravel-zookeeper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

zookeeper / laravel-zookeeper example snippets

 php
    [
        'providers' => [
            Ly\Zookeeper\ZookeeperServiceProvider::class,
        ],   
    ]
 php
    $app->register(Ly\Zookeeper\ZookeeperServiceProvider::class);
 php
    [
        'aliases' => [
                'Zk' => Ly\Zookeeper\Facades\Zk::class,
        ],
    ]
$xslt
//example

use Ly\Zookeeper\Facades\Zk;

class TesxtController extends controller {

    public function test ()
    {
        $nodeValue = ZK::getNodeData('usercenter/userhost');
    }
}