- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个运行良好的 Ratchet 服务器和聊天应用程序类。我的问题是如何添加周期性循环?
我尝试按照 Periodically sending mesages to clients in Ratchet 中的示例进行操作
但我一直无处可去。我的目标和这个人一样,是让服务器检查所有客户端是否还活着。每次我尝试使用 addPeriodicTimer 时,我似乎无法像上面链接中的人那样访问 chat.php 中的 $clients 公共(public)属性,以便从 server.php 中的计时器发送消息。server.php 中周期性计时器中的 foreach 循环一直提示它显然有一个“无效参数”。
谁能看出我做错了什么?
我的 server.php 代码:
<?php
require($_SERVER['DOCUMENT_ROOT'].'/var/www/html/vendor/autoload.php');
require_once($_SERVER['DOCUMENT_ROOT']."/var/www/html/bin/chat.php");
use Ratchet\Server\IoServer;
use Ratchet\Http\HttpServer;
use Ratchet\WebSocket\WsServer;
use Ram\Chat;
$server = IoServer::factory(new HttpServer(new WsServer(new Chat())), 8080);
// Server timer <------ having trouble here
$server->loop->addPeriodicTimer(5, function () use ($server) {
foreach($server->app->clients as $client)
{
//$client->send("[helloworld]");
}
});
$server->run();
?>
和我的 chat.php:
<?php
namespace Ram;
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
error_reporting(E_ALL ^ E_NOTICE);
session_id($_GET['sessid']);
if(!session_id)
session_start();
$userid = $_SESSION["userid"];
$username = $_SESSION["username"];
$isadmin = $_SESSION["isadmin"];
$resources = array();
class Users
{
public $name;
public $resid;
public $timestamp;
}
class Chat implements MessageComponentInterface
{
public $clients;
var $users = array();
/*
function cmp($a, $b)
{
return strcmp($a->name, $b->name);
}
function removeObjectById(ConnectionInterface $id , $arr)
{
$array = $arr;
foreach ( $array as $key => $element ) {
if ( $id->resourceId == $element->resid )
{
unset($array[$key]);
break;
}
}
usort($array, "cmp");
return $array;
}
*/
public function __construct()
{
$this->clients = new \SplObjectStorage;
}
public function onOpen(ConnectionInterface $conn)
{
$this->clients->attach($conn);
}
public function onClose(ConnectionInterface $conn)
{
//$users = removeObjectById($conn, $users);
$this->clients->detach($conn);
}
public function onMessage(ConnectionInterface $conn, $msg)
{
$msgjson = json_decode($msg);
$tag = $msgjson->tag;
if($tag == "[msgsend]")
{
foreach($this->clients as $client)
{
$client->send($msg);
}
}
else if($tag == "[bye]")
{
foreach($this->clients as $client)
{
$client->send($msg);
}
$this->clients->detach($conn);
}
else if($tag == "[connected]")
{
//store client information
$temp = new Users();
$temp->name = $msgjson->uname;
$temp->resid = $conn->resourceId;
$temp->timestamp = date('Y-m-d H:i:s');
$users[] = $temp;
//usort($users, "cmp");
//send out messages
foreach($this->clients as $client)
{
$client->send($msg);
}
}
else if($tag == "[imalive]")
{
//update user timestamp who sent [imalive]
if (is_array($users) || is_object($users))
{
foreach($users as $user)
{
if($msgjson->uname == $user->name)
{
$user->timestamp = date('Y-m-d H:i:s');
}
}
}
}
}
public function onError(ConnectionInterface $conn, Exception $e)
{
echo "Error: " . $e->getMessage();
$conn -> close();
}
}
?>
最佳答案
为什么不在传递到 HTTPServer
之前定义 Chat
对象实例:
$chat = new Chat();
$server = IoServer::factory(new HttpServer(new WsServer($chat)), 8080);
// Server timer <------ having trouble here
$server->loop->addPeriodicTimer(5, function () use ($chat) {
foreach($chat->clients as $client)
{
//$client->send("[helloworld]");
}
});
$server->run();
关于php - 如何访问 Ratchet php 周期性循环和客户端在应用程序内发送?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38565712/
我已经完成了创建和启动计时器的手册页。 http://man7.org/linux/man-pages/man2/timerfd_create.2.html 但是,除了 arm(start) 和 di
我正在用 opengl 编写新的代码库,很早就遇到了一个奇怪的错误。这是帧速率的明显波动,具有重复性和可预测性。 我知道它肯定与渲染的对象成正比。它也与屏幕大小成正比(不是视口(viewport)大小
我知道如何使用计算数组中点之间的欧几里得距离 scipy.spatial.distance.cdist 类似于这个问题的答案: Calculate Distances Between One Poin
我想使用 CGAL 构造周期性 3D Delaunay 三角剖分和信息(在本例中为整数)。对于 2D,如果我构造一个 vector 对(点,信息)并将其传递给三角测量函数,则效果很好。然而,非常类似的
每隔几天,我们就会收到少量 MySql 超时错误,这些错误与我们的 MySQL RDS 实例上的 CPU 和数据库连接出现大量峰值相对应。这些查询通常非常快(<5 毫秒),但突然超时。 此时,数据库操
我是一名优秀的程序员,十分优秀!