回答:
fgets()
関数を使用して、ファイルを1行ずつ読み取ることができます。
$handle = fopen("inputfile.txt", "r");
if ($handle) {
while (($line = fgets($handle)) !== false) {
// process the line read.
}
fclose($handle);
} else {
// error opening the file.
}
too large to open in memory
部品をどのように説明しますか?
if ($file = fopen("file.txt", "r")) {
while(!feof($file)) {
$line = fgets($file);
# do same stuff with the $line
}
fclose($file);
}
if($file)
before whileループのテスト
feof()
もう存在しませんか?
オブジェクト指向のインターフェイスクラスをファイルに使用できます-SplFileObject http://php.net/manual/en/splfileobject.fgets.php(PHP 5> = 5.1.0)
<?php
$file = new SplFileObject("file.txt");
// Loop until we reach the end of the file.
while (!$file->eof()) {
// Echo one line from the file.
echo $file->fgets();
}
// Unset the file to call __destruct(), closing the file handle.
$file = null;
eof()
、SplFileObjectに関数はありませんか?
rtrim($file->fgets())
に応じて、読み取られる各行ストリングの末尾の改行を取り除くために使用します。
大きなファイルを開いている場合、fgets()と一緒にジェネレータを使用して、ファイル全体をメモリにロードしないようにする必要があります。
/**
* @return Generator
*/
$fileData = function() {
$file = fopen(__DIR__ . '/file.txt', 'r');
if (!$file)
die('file does not exist or cannot be opened');
while (($line = fgets($file)) !== false) {
yield $line;
}
fclose($file);
};
次のように使用します。
foreach ($fileData() as $line) {
// $line contains current line
}
このようにして、foreach()内の個々のファイル行を処理できます。
注:ジェネレーターにはPHP 5.5以上が必要です
SplFileObject
アプローチと比較して。
バッファリング手法を使用してファイルを読み取ります。
$filename = "test.txt";
$source_file = fopen( $filename, "r" ) or die("Couldn't open $filename");
while (!feof($source_file)) {
$buffer = fread($source_file, 4096); // use a buffer of 4KB
$buffer = str_replace($old,$new,$buffer);
///
}
file()
ファイルに含まれている行の配列を返す関数があります。
foreach(file('myfile.txt') as $line) {
echo $line. "\n";
}
foreach (new SplFileObject(__FILE__) as $line) {
echo $line;
}
file()
です。
すべての回答に明らかな答えはありませんでした。
PHPには、まさにその目的のために作られた、きちんとしたストリーミング区切りパーサーがあります。
$fp = fopen("/path/to/the/file", "r+");
while ($line = stream_get_line($fp, 1024 * 1024, "\n")) {
echo $line;
}
fclose($fp);
while (($line = stream_get_line($fp, 1024 * 1024, "\n")) !== false)
これは非常に大きなファイルで管理する方法です(最大100Gでテスト済み)。そして、それはfgets()よりも高速です
$block =1024*1024;//1MB or counld be any higher than HDD block_size*2
if ($fh = fopen("file.txt", "r")) {
$left='';
while (!feof($fh)) {// read the file
$temp = fread($fh, $block);
$fgetslines = explode("\n",$temp);
$fgetslines[0]=$left.$fgetslines[0];
if(!feof($fh) )$left = array_pop($lines);
foreach ($fgetslines as $k => $line) {
//do smth with $line
}
}
}
fclose($fh);
この質問に対する一般的な解決策の1つは、改行文字に関する問題です。シンプルでかなり簡単に修正できますstr_replace
。
$handle = fopen("some_file.txt", "r");
if ($handle) {
while (($line = fgets($handle)) !== false) {
$line = str_replace("\n", "", $line);
}
fclose($handle);
}
SplFileObjectは、大きなファイルを処理する場合に役立ちます。
function parse_file($filename)
{
try {
$file = new SplFileObject($filename);
} catch (LogicException $exception) {
die('SplFileObject : '.$exception->getMessage());
}
while ($file->valid()) {
$line = $file->fgets();
//do something with $line
}
//don't forget to free the file handle.
$file = null;
}
<?php
echo '<meta charset="utf-8">';
$k= 1;
$f= 1;
$fp = fopen("texttranslate.txt", "r");
while(!feof($fp)) {
$contents = '';
for($i=1;$i<=1500;$i++){
echo $k.' -- '. fgets($fp) .'<br>';$k++;
$contents .= fgets($fp);
}
echo '<hr>';
file_put_contents('Split/new_file_'.$f.'.txt', $contents);$f++;
}
?>
配列を返す関数
function read_file($filename = ''){
$buffer = array();
$source_file = fopen( $filename, "r" ) or die("Couldn't open $filename");
while (!feof($source_file)) {
$buffer[] = fread($source_file, 4096); // use a buffer of 4KB
}
return $buffer;
}