これはファイルへの挿入で、一度に 1 行ずつ挿入されます。たとえば、最後の 10 行だけを読みたいとします。
$file = SITE_ROOT."logs/log.txt";
if ($handle = fopen($file, 'a+b')) {
$content = Session::get('username') . " has logged out on - " . datetime_to_text("now") . "\r\n";
fwrite($handle, $content);
fclose($handle);
} else {
echo 'Culd not open file for writing.';
}
これが私がそれらを読む方法です、それらをすべて読みます。
$file = SITE_ROOT . "logs/log.txt";
$content = "";
if ($handle = fopen($file, 'r')) {
while (!feof($handle)) {
$content .= '<li><a href="#">' . fgets($handle) . '</a></li>';
echo count($handle);
}
fclose($handle);
}
echo nl2br($content);
10だけ読むには?
完了しました。探していた答えが見つかりました。
Thx, i found useffull this one.
$file = SITE_ROOT . "logs/log.txt";
$data = array_slice(file($file), -10);
$data1 = file($file);
foreach ($data as $line) {
echo '<li><a href="#">'. nl2br($line) . '</a></li>';
}