How to get events instantly using SSE? – PHP Versions
I'm currently trying to use Server-Sent Events using PHP, but they are not firing instantly on the browser. Here is my code: <?php // Headers must be processed line by line. header('Content-Type: text/event-stream'); header('Cache-Control: no-cache'); header('X-Accel-Buffering: no'); while(true) { //…