Created
December 14, 2017 20:16
-
-
Save parth-patil/b10469f61204b7c3d38fe0d79b35d688 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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