socket.io-push-server.png (22.9 KB, 下载次数: 1590)
下载附件 保存到相册
8 年前 上传
<?php $basePath = Yii::getPathOfAlias('application.vendor.elephantio.lib.ElephantIO'); require_once($basePath . DIRECTORY_SEPARATOR . 'Client.php'); require_once($basePath . DIRECTORY_SEPARATOR . 'Payload.php'); use ElephantIO\Client as Elephant; class extElephantIO extends CApplicationComponent { public $host = null; public $port = null; public $namespace = null; private $elephant = null; private $ioNameSpace = null; public function init() { if ($this->host === null || $this->port === null) { throw new Exception('%s: %s: %s, Please give me parameters host and port', basename( __FILE__ ), __FUNCTION__, __LINE__); } } public function setNameSpace($nameSpace) { if ($this->elephant === null) { $this->elephant = new Elephant('http://' . $this->host . ':' . $this->port, 'socket.io', 1, false, true, true); $this->elephant->init(); } $this->ioNameSpace = $this->elephant->createFrame(null, $nameSpace); } public function sendMsg($event, $msg) { if ($this->ioNameSpace === null) { if ($this->namespace !== null) { $this->ioNameSpace = $this->elephant->createFrame(null, $this->namespace); } else { throw new Exception('%s: %s: %s, Please setNameSpace before sendMsg', basename( __FILE__ ), __FUNCTION__, __LINE__); } } $this->ioNameSpace->emit($event, $msg); } public function close() { $this->elephant->close(); $this->elephant = null; } }
'components' => array( 'ElephantIO' => array( 'class' => 'application.extensions.extElephantIO', 'host' => 'xxx', 'port' => xxx, ), ... ),
$elephant = Yii::app()->ElephantIO; $elephant->setNameSpace('/message_namespace'); $elephant->sendMsg( 'message_event_type', $messageContent ); $elephant->close();
来源:即时通讯网 - 即时通讯开发者社区!
轻量级开源移动端即时通讯框架。
快速入门 / 性能 / 指南 / 提问
轻量级Web端即时通讯框架。
详细介绍 / 精编源码 / 手册教程
移动端实时音视频框架。
详细介绍 / 性能测试 / 安装体验
基于MobileIMSDK的移动IM系统。
详细介绍 / 产品截图 / 安装体验
一套产品级Web端IM系统。
详细介绍 / 产品截图 / 演示视频
引用此评论
引用:TonyWangx 发表于 2016-03-30 10:57 大侠, php如何根据cookie验证用户身份, 你说的API根据cookie验证用户身份是如何做到的,请点拨一下
引用:点点滴滴 发表于 2016-05-25 17:55 想要建立实时web,推荐GoEasy的web实时推送,他们是专注做Web实时推送的, 网上一搜就有其用户自己总结的实 ...
QQ20160525-2.png (210 KB, 下载次数: 1563)
引用:JackJiang 发表于 2016-05-25 18:01 好吧,这东西什么来路,云IM?开源?不过这网站是真“黑”:
精华主题数超过100个。
连续任职达2年以上的合格正式版主
为论区做出突出贡献的开发者、版主等。
Copyright © 2014-2024 即时通讯网 - 即时通讯开发者社区 / 版本 V4.4
苏州网际时代信息科技有限公司 (苏ICP备16005070号-1)
Processed in 0.109375 second(s), 42 queries , Gzip On.