Guest User

Untitled

a guest
Feb 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. header("Content-Type: text/event-stream\n\n");
  3.  
  4. echo 'data: ' . json_encode(
  5. array(
  6. 0 => array(
  7. 'time' => time(),
  8. 'message' => 'Some kind of foo'
  9. ),
  10. 1 => array(
  11. 'time' => time(),
  12. 'message' => 'Some kind of quux'
  13. )
  14. )
  15. ) . "\n";
  16.  
  17. ?>
Add Comment
Please, Sign In to add comment