Skip to content

Instantly share code, notes, and snippets.

@hfuller
Created June 2, 2013 01:07
Show Gist options
  • Save hfuller/5692242 to your computer and use it in GitHub Desktop.
Save hfuller/5692242 to your computer and use it in GitHub Desktop.
<?php
$orig = file_get_contents("state.txt");
if ( array_key_exists("instant",$_REQUEST) ) {
die($orig);
}
while ( 1 )
{
$new = file_get_contents("state.txt");
if ( $new != $orig )
{
echo($new);
break;
}
sleep(2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment