Skip to content

Instantly share code, notes, and snippets.

@vidux
Last active April 27, 2020 05:00
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 vidux/ded7004a9c2b0cc308a50ca38a354e65 to your computer and use it in GitHub Desktop.
Save vidux/ded7004a9c2b0cc308a50ca38a354e65 to your computer and use it in GitHub Desktop.
php/laravel read tail log file from code
<?php
$file = popen("tail /storge/logs/laravel.log", 'r');
while(!feof($file)) {
$buffer = fgets($file);
echo "$buffer<br/>\n";
ob_flush();
flush();
}
pclose($file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment