php – 读取和解析非常大的文件的内容

前端之家收集整理的这篇文章主要介绍了php – 读取和解析非常大的文件的内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Least memory intensive way to read a file in PHP4个
我试图解析一个大小约1GB的制表符分隔文件.

在哪里运行脚本我得到:

Fatal error: Allowed memory size of 1895825408 bytes exhausted  (tried to allocate 1029206974 bytes) ...

我目前的脚本只是:

$file = file_get_contents('allCountries.txt') ;

$file = str_replace(array("\r\n","\t"),array("[NEW*LINE]","[tAbul*Ator]"),$file) ;

我已经将PHP.ini中的内存限制设置为-1,然后给了我:

Fatal error: Out of memory (allocated 1029963776) (tried to allocate 1029206974 bytes)

是否有部分打开文件,然后继续下一部分,以便一次用尽更少的内存?

是的,你可以逐行阅读:
$handle = @fopen("/tmp/inputfile.txt","r");
if ($handle) {
    while (($buffer = fgets($handle,4096)) !== false) {
        echo $buffer;
    }
    fclose($handle);
}
原文链接:https://www.f2er.com/php/134472.html

猜你在找的PHP相关文章