Fgetsだと思いますが、具体的な構文が見つかりません。ログファイルに追加された最後の行を(より簡単だと思う文字列で)読み出そうとしています。
最も単純な単純な解決策は次のとおりです。
$file = "/path/to/file";
$data = file($file);
$line = $data[count($data)-1];
ただし、これによりファイル全体がメモリにロードされます。おそらく問題(またはそうではない)。より良い解決策はこれです:
$file = escapeshellarg($file); // for the security concious (should be everyone!)
$line = `tail -n 1 $file`;
これはあなたが探しているもののように見えます:
これは、負のインデックスを持つfseek()を使用して、ファイルを最後からロールアップする関数を実装します。返される行数を定義できます。
コードも利用できます 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);
これは、ファイル全体をメモリにロードしないため、より優れています。
YOUR_EOLを正しい行末に設定します。スクリプトが存在するOSのデフォルトの行末と同じ行末を使用する場合は、定数PHP_EOLを使用できます。
function seekLastLine($f) {
$pos = -2;
do {
fseek($f, $pos--, SEEK_END);
$ch = fgetc($f);
} while ($ch != "\n");
}
-2
最後の文字は\n
ファイルを1行ずつ読み取り、最後に読み取った行を保存して取得する必要があります。
または、unix/linuxの場合は、シェルコマンドテールの使用を検討してください。
tail -n 1 filename
...なぜ最後の行を読むのですか?
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);
これは、1行または0行のファイルでは壊れません。
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;
}
ファイルを1行ずつ読み取りたい場合、 file
関数はファイルの内容を1行ずつ読み取り、各行を配列の要素として返します。
したがって、次のような簡単なことを行うことができます。
$lines = file('log.txt');
$lastLine = array_pop($lines);
@unique_stephen、あなたの答えには欠陥があります。 PHP fseekは成功の場合は0を返し、失敗の場合は-1を返します。結果を$ begin(sic)に保存し、後でftell()のフィルターで使用するのは正しくありません。私の評判の場合私はあなたを投票してコメントを残したでしょう。これはunique_stephenの関数の修正バージョンです。
function readlastline($fileName)
{
$fp = @fopen($fileName, "r");
if (fseek($fp, 0) == -1)
exit('Cannot seek to beginning of the file');
$pos = -1;
$t = " ";
while ($t != "\n") {
if (fseek($fp, $pos, SEEK_END) == -1)
exit('Cannot seek to the end of the file');
if (ftell($fp) == 0) {
break;
}
$t = fgetc($fp);
$pos = $pos - 1;
}
$t = fgets($fp);
fclose($fp);
return $t;
}
注:PHPのfseekは、64ビットバイナリでも32ビット署名されたPHP_MAX_INTより大きいファイルの最後までシークすることはできません。