PHP code example of topphp / topphp-consul
1. Go to this page and download the library: Download topphp/topphp-consul 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/ */
topphp / topphp-consul example snippets
return [
'uri' => '127.0.0.1:8500'
];
$this->agent = App::make(Agent::class);
$this->kv = App::make(KV::class);
$this->health = App::make(Health::class);
//返回一个 `ConsulResponse` 对象,可以通过 `->json()` 获取相应json数据
$services = $this->health->service($serviceName);
$services = $this->health->service($serviceName)->json();