4

昨天我深入研究了服务器发送事件,因为它们是为我正在创建的在线游戏创建新闻源的好方法。我有一个可以订阅我的提要的工作脚本,以及一个可以在几分钟内从 MySql 数据库中提取新闻提要的脚本,但由于某种原因,它每次都会断开连接......(并且每 3 秒重新连接一次,什么都没有例如,比仅使用具有特定时间间隔的 AJAX 更好)

我正在使用的javascript:

var source = new EventSource('http://theobg.itselementary.site50.net/gamefeed.php');
source.onmessage = function(e) {
    $("#gamefeed").html(e.data);
}

我正在使用的 PHP:

<?php
header('Content-Type: text/event-stream');
header('Cache-Control: no-cache');
header('Connection: keep-alive');

function sendMsg($id, $msg) {
  echo "id: $id" . PHP_EOL;
  echo "data: $msg" . PHP_EOL;
  echo PHP_EOL;
  ob_flush();
  flush();
}

//The file for connecting to my database here...
$gameid = 1;

$serverTime = time();
//Some mysql query to get the gamefeed from the database here..., gamefeed is structured like this: NEWS&OTHERNEWS&OLDERNEWS&EVENOLDERNEWS

sendMsg($serverTime, $gamefeed);

?>

我已经查看了整个互联网,但一切似乎对我来说都很好,除了连接没有“保持活跃”,我不知道为什么会这样......有人可以帮助我吗?

在此先感谢,达利奥佐

4

1 回答 1

2

您需要检查数据并使用循环发送。

<?php
while(true){
    //check for updates here
    if($updates){
        sendMsg($id,$data);
    }
    sleep(1);//loosen it up
}

此外,为了更容易编码,您可以尝试我的服务器发送事件的 php 库。这里

于 2013-02-09T10:15:27.533 回答