php 安装yar扩展

注意:如需调用,客户端和服务端均需安装yar及msg

https://blog.csdn.net/diandianxiyu_geek/article/details/17119341
http://note.youdao.com/noteshare?id=2e320b72cc5f348bd916ffd9f159da83&sub=20EE565CDF3546CC815D5F321A1819F0

可能碰到的问题:测试阶段局域网跨域解析注意ping一下域名,看看能不能ping通,
一定要注意域名解析的问题
注意路由器配置解析的时候域名先后的问题,特殊域名靠前,泛域名靠后

1.安装及使用参照文档<>yar的安装和使用>  注:注意use命名空间

客户端调用:

    public function __construct()
    {
        parent::__construct();
        $url = 'http://zn.zhinong.com/index.php/index/themebar';
        $this->obj =  new \Yar_client($url);
        $this->obj->SetOpt(YAR_OPT_CONNECT_TIMEOUT, 1000);
    }
    public function t1()
    {

        $res= $this->obj->test('i am test');
        echo $res;
    }
服务端创建:

你可能感兴趣的:(php 安装yar扩展)