0
我正在嘗試將所有用戶同時重定向到遊戲頁面,但我沒有成功完成此操作。我如何同步它們?如何在同一時間爲所有客戶端啓動PHP多人網頁遊戲?
我試過使用JavaScript從eventSource,但仍不能讓他們都進入遊戲。一次只能重定向一個。是否有任何功能,框架或其他可能有助於同時重定向所有玩家的東西?
<script>
if(typeof(EventSource) !== "undefined") {
var source = new EventSource("demo_sse.php");
source.onmessage = function(event) {
document.getElementById("result").innerHTML += " <?php startGame(); ? >";
}
} else {
document.getElementById("result").innerHTML = "Sorry, your browser does not support server-sent events...";
}
</script>
php在服務器上運行。假設這個'