Skip to content

Instantly share code, notes, and snippets.

@lorenzos
Created January 30, 2013 10:42
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lorenzos/d9a609b513d881bdad47 to your computer and use it in GitHub Desktop.
Save lorenzos/d9a609b513d881bdad47 to your computer and use it in GitHub Desktop.
<?php
function tailFile($filepath, $lines = 1) {
return trim(implode("", array_slice(file($filepath), -$lines)));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment