前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >[PHP] 使用ftell和fseek函数直接定位文件位置获取部分数据

[PHP] 使用ftell和fseek函数直接定位文件位置获取部分数据

作者头像
唯一Chat
发布2019-09-10 10:49:50
8350
发布2019-09-10 10:49:50
举报

对于大文件只获取部分数据很有用

1.使用ftell函数可以获取当前指针的字节位置 2.使用fseek函数可以直接定位到指定的位置 3.读取指定字节的数据就可以部分获取文件内容了

<?php
class FileStream
{
    private $fp = null;
    private $mode = 'r';
    private $context = null;
    private $readonly = false;
    private $writeonly = false;
    private $appendMode = false;

    public function __construct($file, $mode = 'r', $context = null)
    {
        $mode = trim($mode);
        if (isset($mode[0])) {
            $this->mode = strtolower($mode);
        }

        if ($context) {
            $this->context = $context;
            $this->fp = fopen($file, $mode, false, $this->context);
        } else {
            $this->fp = fopen($file, $mode);
        }

        if (!$this->fp) {
            throw new Exception('can not open ' . $file);
        }
        
        if ($this->mode == 'r') {
            $this->readonly = true;
        } elseif ($this->mode == 'w') {
            $this->writeonly = true;
        } elseif ($this->mode[0] == 'a') {
            $this->appendMode = true;
        }
    }

    public function __destruct()
    {
        $this->close();
    }

    public function close()
    {
        if (!$this->fp) {
            fclose($this->fp);
            $this->fp = null;
        }
    }

    public function read($size)
    {
        if ($this->writeonly) {
            throw new Exception('write only');
        }

        if (!$this->fp) {
            throw new Exception('stream already closed');
        }

        $buf = fread($this->fp, $size);
        if ($buf === false) {
            throw new Exception('read failed');
        }

        return $buf;
    }

    public function readLine()
    {
        if ($this->writeonly) {
            throw new Exception('write only');
        }

        if (!$this->fp) {
            throw new Exception('stream already closed');
        }
                
        return fgets($this->fp);
    }

    public function readAll()
    {
        if ($this->writeonly) {
            throw new Exception('write only');
        }

        if (!$this->fp) {
            throw new Exception('stream already closed');
        }

        $buf = '';

        while (true) {
            $s = fread($this->fp, 8192);
            if ($s === false) {
                throw new Exception('read failed');
            }

            if (!isset($s[0])) {
                break;
            }

            $buf .= $s;
        }

        return $buf;
    }

    public function write($data)
    {
        if ($this->readonly) {
            throw new Exception('read only');
        }

        if (!$this->fp) {
            throw new Exception('stream already closed');
        }

        if (fwrite($this->fp, $data) === false) {
            throw new Exception('write failed');
        }
    }
    
    public function tell()
    {
        if ($this->appendMode) {
            throw new Exception('tell can not work on appendmode');
        }

        if (!$this->fp) {
            throw new Exception('stream already closed');
        }

        $p = ftell($this->fp);
        if ($p === false) {
            throw new Exception('tell failed');
        }

        return $p;
    }

    public function seek($position)
    {
        if ($this->appendMode) {
            throw new Exception('seek can not work on seekmode');
        }

        if (!$this->fp) {
            throw new Exception('stream already closed');
        }

        if (fseek($this->fp, $position) !== 0) {
            throw new Exception('seek failed');
        }
    }
}

$stream=new FileStream("1.log");
$start=0;
$end=0;
//获取开始和结束的字节位置
while($ln=$stream->readLine()){
    if($ln=="3333333333333\r\n"){
        $start=$stream->tell();
    }
    if($ln=="5555555555555\r\n"){
       $end=$stream->tell();
    }
}
var_dump($start,$end);

//直接定位到开始的字节位置
$stream->seek($start);
//读取指定字节数的数据
$res=$stream->read($end - $start);

var_dump($res);

1.log的内容

2.获取部分结果

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-05-23 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档