Skip to content

Instantly share code, notes, and snippets.

@rococodogs
Created February 29, 2016 13:06
Show Gist options
  • Select an option

  • Save rococodogs/ad5e2019da8a7a177eaf to your computer and use it in GitHub Desktop.

Select an option

Save rococodogs/ad5e2019da8a7a177eaf to your computer and use it in GitHub Desktop.
loop to handle nd-json (mostly b/c I forget how to handle stdin in php)
<?php
while ( $raw_line = fgets(STDIN) ) {
$line = trim($raw_line);
$parsed = json_decode($line);
// do something with yr object
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment