|
可以用以下办法生成测试文件
复制代码 代码如下:
$file_handle = fopen("./csdn.txt", "rb+");
for ($index1 = 1; $index1 <= 2000000; $index1++) {
fwrite($file_handle, 'http://jb51.NET'.$index1."/r");
}
fclose($file_handle);
读取处理代码如下:
复制代码 代码如下:
$i = 0;
$now = '';
while ($i >= 0) {
if ($i>10) {
break;
}
fseek($file_handle, 0, SEEK_CUR);
$now = fgetc($file_handle);//可以自己写个判断false表示文件到头
if ($now == "/r") {
echo '找到断点';
}
echo $now;
$i++;
}
fclose($file_handle);
php技术:浅析php中如何在有限的内存中读取大文件,转载需保留来源!
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。