Skip to content

Instantly share code, notes, and snippets.

Created October 17, 2012 20:21
Show Gist options
  • Save anonymous/3907907 to your computer and use it in GitHub Desktop.
Save anonymous/3907907 to your computer and use it in GitHub Desktop.
<?php
class Test extends Thread {
function run() {
echo ord(fgetc($this->fp));
}
}
$thread = new Test();
$thread->fp = fopen('/dev/random', 'r');
$thread->start();
$thread->join();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment