Skip to content

Instantly share code, notes, and snippets.

@simbalinux
Created February 22, 2018 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simbalinux/14e97a0377f737fb881089c499e8134b to your computer and use it in GitHub Desktop.
Save simbalinux/14e97a0377f737fb881089c499e8134b to your computer and use it in GitHub Desktop.
PHP last 5 lines of log file
<?php
$file = file("../log/simplelogger.log");
for ($i = max(0, count($file)-5); $i < count($file); $i++) {
var_dump($line);
echo $file[$i] . "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment