web即时通讯

php实现即时聊天(基于融云通讯),目前只是简单的事例。
今天看到了一个挺有意思的项目,即时聊天工具。虽然有QQ这样很普及的聊天工具了,但是自己搞一个还是挺有意思的。
本案例是基于融云通讯的,官网地址http://www.rongcloud.cn/,功能很多,我由于没有很好看的页面,直接用他们的插件,据我观察,插件只有最近联系人这个功能。那就先按照简单的案例先实现吧,喜欢的可以自己继续研究!
首先需要注册一个融云账号---然后自己去创建一个实例----查看各种KEY,具体的自己按照官网的指引去看吧。我给的例子是我的一个测试key,可以直接去用。依旧是tp5框架,自己不会配置tp5框架的,我就不说什么了。没有用数据库去实现用户信息,简单的实现功能,主要是给大家演示一下功能,勿喷啊。
配置各种key的config.php

 'e0x9wycfxxx5q',
    'APP_SECRET' => 'F7sI8rkLtv'
];

复制代码
他们给的key好短啊有没有,继续吧。我下载了官方给的SDK,已经引入到extend文件下了。可以直接调用了。开始主要的部分吧,聊天页面的主方法:
Index.php

redirect( url('login/index') );
        }
    }
    //聊天主方法
    public function index()
    {
        $appKey = config('APP_KEY');
        $appSecret = config('APP_SECRET');
        $rongYun = new ServerAPI( $appKey, $appSecret );
        $tx = "http://www.tk.com/static/images/1.jpg";
        if( 2 == cookie('uid') ){
            $tx = "http://www.tk.com/static/images/2.jpg";
        }
        $token = $rongYun->getToken( cookie('uid'), cookie('uname'), $tx );
        $token = json_decode( $token, true )['token'];
        $this->assign([
            'token' => $token
        ]);
        return $this->fetch();
    }
    //所有的用户信息
    public function userInfo()
    {
        $return['userlist'] = [
            ['id' => 1, 'name' => '张三', 'portraitUri' => 'http://www.tk.com/static/images/1.jpg'],
            ['id' => 2, 'name' => '李四', 'portraitUri' => 'http://www.tk.com/static/images/2.jpg']
        ];
        return json( $return );
    }
    //登录用户信息
    public function onLine()
    {
        $return['data'] = [
            ['id' => '1', 'status' => true],
            ['id' => '2', 'status' => true]
        ];
        return json( $return );
    }
}

复制代码
各种代码我都写死了,主要是演示效果的。好了,其余的代码,可以去我的github上去下载自己去官网对照这个看吧。我主要演示一下具体怎么跑起来。看一下login.php吧:

fetch();
    }
    public function doLogin()
    {
        $param = input('param.');
        if( '张三' == $param['uname'] ){
            cookie('uid', 1);
            cookie('uname', '张三');
        }else if( '李四' == $param['uname'] ){
            cookie('uid', 2);
            cookie('uname', '李四');
        }
        $this->redirect( url('index/index') );
    }
}

原文链接:http://www.thinkphp.cn/code/2255.html

你可能感兴趣的:(web即时通讯)