Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
173 B

  1. #!/usr/bin/env php
  2. <?php
  3. $stdin = fopen( 'php://stdin', 'r' );
  4. $json = '';
  5. while ($line = fgets($stdin)) {
  6. $json .= $line;
  7. }
  8. print_r(json_decode($json));
  9. fclose($f);