Skip to content

Instantly share code, notes, and snippets.

@parth-patil
Created December 14, 2017 20:16
Show Gist options
  • Save parth-patil/b10469f61204b7c3d38fe0d79b35d688 to your computer and use it in GitHub Desktop.
Save parth-patil/b10469f61204b7c3d38fe0d79b35d688 to your computer and use it in GitHub Desktop.
<?php
while($line = fgets(STDIN)){
$line = trim($line);
list($advertiserid, $ts, $balance_cents) = explode("\t", $line);
$date = date('Y-m-d', $ts);
echo "$date\t$advertiserid\t$ts\t$balance_cents\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment