dongqiao9015 2015-06-19 07:37
浏览 100
已采纳

SplFileObject + LimitIterator + offset

I have data file with two lines (two lines just for my example, in real, that file can contain millions of lines) and I use SplFileObject and LimitIterator with offseting. But this combination have strange behaviour in some cases:

$offset = 0;
$file = new \SplFileObject($filePath);
$fileIterator = new \LimitIterator($file, $offset, 100);
foreach ($fileIterator as $key => $line) {
  echo $key;
}

Output is: 01

But with $offset set to 1, output is blank (foreach doesn't iterate any line).

My data file contain this:

{"generatedAt":1434665322,"numRecords":"1}
{"id":"215255","code":"NB000110"}

What I'm doing wrong?

Thanks

  • 写回答

1条回答 默认 最新

  • doutang1992 2015-06-19 10:38
    关注

    Required:

    Use SplFileObject to process a number of records from:

    • a given start record number
    • for a given number of records or until EOF.

    The issue is that SplFileObject gets confused as regards the last record in the file. This prevents it working correctly in foreach loops.

    This code uses the SplFileObject and 'skip records' and 'processes records'. Alas, It cannot use foreach loops.

    • Skip a number of records from the start of the file ($offset).
    • Process a given number of records or unit the end of file ($recordsToProccess)

    The code:

    <?php
    
    $filePath = __DIR__ . '/Q30932555.txt';
    // $filePath = __DIR__ . '/Q30932555_1.txt';
    
    $offset = 1;
    $recordsToProcess = 100;
    
    $file = new \SplFileObject($filePath);
    
    // skip the records
    $file->seek($offset);
    
    $recordsProcessed = 0;
    while (     ($file->valid() || strlen($file->current()) > 0)
             &&  $recordsProcessed < $recordsToProcess
           ) {
        $recordsProcessed++;
        echo '<br />', 'current: ', $file->key(), ' ', $file->current();
        $file->next();
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等
  • ¥15 matlab 用yalmip搭建模型,cplex求解,线性化处理的方法
  • ¥15 qt6.6.3 基于百度云的语音识别 不会改
  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥20 测距传感器数据手册i2c