参见英文答案 >
Least memory intensive way to read a file in PHP4个
我试图解析一个大小约1GB的制表符分隔文件.
我试图解析一个大小约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)
是否有部分打开文件,然后继续下一部分,以便一次用尽更少的内存?
是的,你可以逐行阅读:
原文链接:https://www.f2er.com/php/134472.html$handle = @fopen("/tmp/inputfile.txt","r"); if ($handle) { while (($buffer = fgets($handle,4096)) !== false) { echo $buffer; } fclose($handle); }