HTML
HTML5 服务器发送事件(Server-Sent Events)
服务器端事件流的语法是非常简单的。把 "Content-Type" 报头设置为 "text/event-stream"。现在,您可以开始发送事件流了。
源代码:
点击运行 »
<?php header('Content-Type: text/event-stream'); header('Cache-Control: no-cache'); $time = date('r'); echo "data: The server time is: {$time}"; flush(); ?>
运行结果:
点击运行 »