PHP - Bir dosyada son satırına dönersek?

8 Cevap php

Ben fgets tahmin ediyorum, ama ben özel sözdizimi bulamıyorum. Ben son satırı bir günlük dosyasına eklenen (Düşünüyorum bir dize daha kolaydır) okumak için çalışıyorum.

8 Cevap

Basit naif çözümü çok basit:

$file = "/path/to/file";
$data = file($file);
$line = $data[count($data)-1];

Rağmen, bu belleğe tüm dosyayı yüklemek OLACAKTIR. Muhtemelen bir sorun (ya da değil). Daha iyi bir çözüm şudur:

$file = escapeshellarg($file); // for the security concious (should be everyone!)
$line = `tail -n 1 $file`;

Sizin için ne arıyorsanız bu görünüyor:

tekkie.flashbit.net: Tail functionality in PHP

Bu ucundan dosyasını rulo negatif endeksi ile fseek () kullanan bir işlevi uygular. Eğer iade etmek istiyorum kaç satır tanımlayabilirsiniz.

Kodu da mevcuttur as a Gist on GitHub:

// full path to text file
define("TEXT_FILE", "/home/www/default-error.log");
// number of lines to read from the end of file
define("LINES_COUNT", 10);


function read_file($file, $lines) {
    //global $fsize;
    $handle = fopen($file, "r");
    $linecounter = $lines;
    $pos = -2;
    $beginning = false;
    $text = array();
    while ($linecounter > 0) {
        $t = " ";
        while ($t != "\n") {
            if(fseek($handle, $pos, SEEK_END) == -1) {
                $beginning = true; 
                break; 
            }
            $t = fgetc($handle);
            $pos --;
        }
        $linecounter --;
        if ($beginning) {
            rewind($handle);
        }
        $text[$lines-$linecounter-1] = fgets($handle);
        if ($beginning) break;
    }
    fclose ($handle);
    return array_reverse($text);
}

$fsize = round(filesize(TEXT_FILE)/1024/1024,2);

echo "<strong>".TEXT_FILE."</strong>\n\n";
echo "File size is {$fsize} megabytes\n\n";
echo "Last ".LINES_COUNT." lines of the file:\n\n";

$lines = read_file(TEXT_FILE, LINES_COUNT);
foreach ($lines as $line) {
    echo $line;
}
define('YOUR_EOL', "\n");
$fp = fopen('yourfile.txt', 'r');

$pos = -1; $line = ''; $c = '';
do {
    $line = $c . $line;
    fseek($fp, $pos--, SEEK_END);
    $c = fgetc($fp);
} while ($c != YOUR_EOL);

echo $line;

fclose($fp);

Belleğe tam dosya yüklemek değildir çünkü bu, daha iyi ...

Eğer komut bulunduğu OS varsayılan satır sonları aynı satır sonlarını kullanırsanız, sürekli PHP_EOL kullanabilirsiniz, sizin doğru satır sonları YOUR_EOL ayarlayın.

Sen satır satır dosyayı okumak ve bunu elde etmek için son okunan satır kaydetmek zorunda ya.

Veya Unix / Linux üzerinde Eğer kabuk komut kuyruğu kullanmayı düşünebilirsiniz eğer

tail -n 1 filename

Bu bir alışkanlık, bir 1 veya 0 satır dosya için bölünürler.

function readlastline($fileName)
{

       $fp = @fopen($fileName, "r");
       $begining = fseek($fp, 0);      
       $pos = -1;
       $t = " ";
       while ($t != "\n") {
             fseek($fp, $pos, SEEK_END);
             if(ftell($fp) == $begining){
              break;
             }
             $t = fgetc($fp);
             $pos = $pos - 1;
       }
       $t = fgets($fp);
       fclose($fp);
       return $t;
}
function seekLastLine($f) {
    $pos = -2;
    do {
        fseek($f, $pos--, SEEK_END);
        $ch = fgetc($f);
    } while ($ch != "\n");
}

Son karakteri olabilir -2, çünkü \n

... Neden sadece son satırı okumak?

function readLines($fp, $num) {

    $line_count = 0; $line = ''; $pos = -1; $lines = array(); $c = '';

    while($line_count < $num) {
        $line = $c . $line; 
        fseek($fp, $pos--, SEEK_END);
        $c = fgetc($fp);
        if($c == "\n") { $line_count++; $lines[] = $line; $line = ''; $c = ''; }
    }   
    return $lines;
}

$filename = "content.txt";
$fp = @fopen($filename, "r");

print_r(readLines($fp, 2));

fclose($fp);