Skip to content

Instantly share code, notes, and snippets.

@dasl-
Created July 3, 2019 19:52
Show Gist options
  • Save dasl-/46c91c2c4890dd36f0e4b1a165a64a88 to your computer and use it in GitHub Desktop.
Save dasl-/46c91c2c4890dd36f0e4b1a165a64a88 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;
if ($input === "ffmpeg dunzo\n") {
echo "php dunzo!\n";
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment