使用Server-Sent Events(和Javascript / PHP)的连接会立即停止

时间:2013-02-09 10:07:44

标签: php javascript server-sent-events

昨天我潜入了Server-Sent活动,因为它们是为我正在创建的在线游戏创建新闻源的好方法。我有一个可以订阅我的feed的工作脚本,以及一个可以在几分钟内从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);

?>

我在互联网上看了一遍,但是一切似乎和我一起工作正常,除了没有“保持活着”的联系,我不知道为什么那样......有人可以帮助我吗?

提前致谢, Dalionzo

1 个答案:

答案 0 :(得分:2)

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

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

此外,为了便于编码,您可以尝试使用我的php库来获取服务器发送的事件。 Here