Skip to content

Instantly share code, notes, and snippets.

@Integralist
Last active May 31, 2025 19:53
Show Gist options
  • Save Integralist/1186135 to your computer and use it in GitHub Desktop.
Save Integralist/1186135 to your computer and use it in GitHub Desktop.
server-sent events #php
<?php
header("Content-Type: text/event-stream");
while(true) {
echo "Event: server-time\n";
$time = time();
echo "data: $time\n";
echo "\n";
flush();
sleep(3);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment