gpt4 book ai didi

php - 我使用服务器发送事件(和 Javascript/PHP)的连接总是立即断开

转载 作者:可可西里 更新时间:2023-10-31 23:32:28 24 4
gpt4 key购买 nike

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

?>

我在整个互联网上都看过了,但我似乎一切正常,除了连接没有“保持活跃”,我不知道为什么会这样……有人能帮我吗?

提前致谢,达里昂佐

最佳答案

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

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

此外,为了更轻松地编码,您可以尝试我的服务器发送事件的 php 库。 Here

关于php - 我使用服务器发送事件(和 Javascript/PHP)的连接总是立即断开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14786985/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com