php fseek ftell
Posted h0000dh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php fseek ftell相关的知识,希望对你有一定的参考价值。
<?php header(‘Content-Type: text/html; charset=utf-8‘); $file = ‘./php34.txt‘; // ./php34.txt 里面的内容:01234567890 $mode = ‘r+‘; $file_handle = fopen($file, $mode); echo ‘<br>‘, ftell($file_handle); //0 fseek($file_handle, 3);//该函数把文件指针从当前位置向前或向后移动到新的位置,新位置从文件头开始以字节数度量。 echo ‘<br>‘, ftell($file_handle);//3 echo ‘<br>‘, fgets($file_handle, 3);//34
以上是关于php fseek ftell的主要内容,如果未能解决你的问题,请参考以下文章
可以通过 fseek() 读取整个文件到 SEEK_END 并通过 ftell() 获取文件大小吗?