Skip to content

Instantly share code, notes, and snippets.

@dasl-
Last active July 3, 2019 19:54
Show Gist options
  • Save dasl-/53374a06368c6fca4bb5287fd0f5c79d to your computer and use it in GitHub Desktop.
Save dasl-/53374a06368c6fca4bb5287fd0f5c79d to your computer and use it in GitHub Desktop.
<?php
$stdin = fopen('php://stdin', 'r');
while (true) {
$input = fgets($stdin);
if ($input == false) {
echo "php EOF!\n";
break;
}
echo "php: " . $input;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment