9 lines
185 B
PHP
9 lines
185 B
PHP
<?php
|
|
// Test simplísimo de SSE
|
|
header('Content-Type: text/event-stream');
|
|
header('Cache-Control: no-cache');
|
|
|
|
echo "event: test\n";
|
|
echo "data: {\"message\":\"works\"}\n\n";
|
|
flush();
|