Skip to content

Instantly share code, notes, and snippets.

@cbednarski
Created February 19, 2013 04:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbednarski/4983212 to your computer and use it in GitHub Desktop.
Save cbednarski/4983212 to your computer and use it in GitHub Desktop.
Read from standard input using php
<?php
$f = fopen('php://stdin', 'r');
while ($line = fgets($f)) {
// do stuff
}
fclose($f);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment