PHP からファイルの最後の行を読み取るためのコードは次のとおりです。 -
$line = ''; $f = fopen('data.txt', 'r'); $cursor = -1; fseek($f, $cursor, SEEK_END); $char = fgetc($f); //Trim trailing newline characters in the file while ($char === "</p><p>" || $char === "\r") { fseek($f, $cursor--, SEEK_END); $char = fgetc($f); } //Read until the next line of the file begins or the first newline char while ($char !== false && $char !== "</p><p>" && $char !== "\r") { //Prepend the new character $line = $char . $line; fseek($f, $cursor--, SEEK_END); $char = fgetc($f); } echo $line;
出力は、読み取られたテキスト ファイルの最後の行になります。と表示されました。
テキスト ファイルは、カーソルが -1 を指すように設定された読み取りモードで開かれます。つまり、最初はコンテンツがありません。 「fseek」関数は、ファイルの末尾または最終行に移動するために使用されます。改行文字が見つかるまで行が読み取られます。その後、読み取った文字が表示されます。
以上がPHPでファイルの最終行を読み取るの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。