Skip to content

Instantly share code, notes, and snippets.

@nobuf
Created April 17, 2011 18:09
Show Gist options
  • Save nobuf/924300 to your computer and use it in GitHub Desktop.
Save nobuf/924300 to your computer and use it in GitHub Desktop.
tac in php
#!/usr/local/bin/php
<?php
$lines = array_reverse(file($argv[1]));
array_walk($lines, function($value, $key){
echo $value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment