douke3335 2012-11-30 00:08
浏览 336
已采纳

PHP,使用fgets跳过文本文件的第一行和最后一行

I'm trying to figure out how to skip the first and last line of a text file when I'm reading it while using fgets(). The first line could be solved with an if(!$firstLine), but I'm not sure how to ignore the last line or if my solution for ignoring the first line is the best choice.

  • 写回答

5条回答 默认 最新

  • dongtaijue1578 2012-11-30 00:19
    关注
    fgets($file); //Ignore the first line
    $line = fgets($file);
    $next = fgets($file); 
    while ($next !== false) { //check the line after the one you will process next.  
                    //This way, when $next is false, then you still have one line left you could process, the last line.
        //Do Stuff
        $line = $next;
        $next = fgets($file);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 maixpy训练模型,模型训练好了以后,开发板通电会报错,不知道是什么问题
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 有没有帮写代码做实验仿真的
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥30 vmware exsi重置后登不上
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容