简单的php版本nacos客户端

v1.0.4 2023-09-20 05:34 UTC

This package is auto-updated.

Last update: 2024-04-20 06:53:45 UTC


README

简单的php版本nacos客户端

安装

composer require xiaosongshu/nacos

客户端提供的方法

        require_once __DIR__.'/vendor/autoload.php';
        $dataId      = 'CalculatorService';
        $group       = 'api';
        $serviceName = 'mother';
        $namespace   = 'public';
        $client      = new \Xiaosongshu\Nacos\Client('http://127.0.0.1:8848','nacos','nacos');
        /** 发布配置 */
        print_r($client->publishConfig($dataId, $group, json_encode(['name' => 'fool', 'bar' => 'ha'])));
        /** 获取配置 */
        print_r($client->getConfig($dataId, $group,'public'));
        /** 监听配置 */
        print_r($client->listenerConfig($dataId, $group, json_encode(['name' => 'fool', 'bar' => 'ha'])));
        /** 删除配置 */
        print_r($client->deleteConfig($dataId, $group));
        /** 创建服务 */
        print_r($client->createService($serviceName, $namespace, json_encode(['name' => 'tom', 'age' => 15])));
        /** 创建实例 */
        print_r($client->createInstance($serviceName, "192.168.4.110", '9504', $namespace, json_encode(['name' => 'tom', 'age' => 15]), 99, 1, false));
        /** 获取服务列表 */
        print_r($client->getServiceList($namespace));
        /** 服务详情 */
        print_r($client->getServiceDetail($serviceName, $namespace));
        /** 获取实例列表 */
        print_r($client->getInstanceList($serviceName, $namespace));
        /** 获取实例详情 */
        print_r($client->getInstanceDetail($serviceName, false, '192.168.4.110', '9504'));
        /** 更新实例健康状态 */
        print_r($client->updateInstanceHealthy($serviceName, $namespace, '192.168.4.110', '9504',false));
        /** 发送心跳 */
        print_r($client->sendBeat($serviceName, '192.168.4.110', 9504, $namespace, false, 'beat'));
        /** 移除实例*/
        print_r($client->removeInstance($serviceName, '192.168.4.110', 9504, $namespace, false));
        /** 删除服务 */
        print_r($client->removeService($serviceName, $namespace));