PHP code example of easyswoole / apollo

1. Go to this page and download the library: Download easyswoole/apollo 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/ */

    

easyswoole / apollo example snippets


go(function (){
    //配置apollo服务器信息
    $server = new \EasySwoole\Apollo\Server([
        'server'=>'http://106.12.25.204:8080',
        'appId'=>'easyswoole'
    ]);
    //创建apollo客户端
    $apollo = new \EasySwoole\Apollo\Apollo($server);
    //第一次同步
    var_dump( $apollo->sync('mysql'));
    //第二次同步,若服务端没有改变,那么返回的结果,isModify标记为fasle,并带有lastReleaseKey
    var_dump( $apollo->sync('mysql'));
});