Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.44 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. ?>