PHP 8.5.0 Beta 1 available for testing

Voting

: min(four, five)?
(Example: nine)

The Note You're Voting On

necudeco at gmail dot com
15 years ago
This a tail php script example for windows system.

<?php
$n
= ( isset($_REQUEST['n']) == true )? $_REQUEST['n']:20;

$offset = -$n * 120;

$rs = fopen('C:/wamp/logs/apache_error.log','r');
if (
$rs === false )
die(
"No se pudo abrir el archivo de log");

fseek($rs,$offset,SEEK_END);

fgets($rs);
while(!
feof($rs))
{
$buffer = fgets($rs);
echo
$buffer;
echo
"<hr />";
}

fclose($rs);
?>

<< Back to user notes page

To Top