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(),ftell()

可以通过 fseek() 读取整个文件到 SEEK_END 并通过 ftell() 获取文件大小吗?

C语言如何获取文件大小?fseek() + ftell()

如何在没有 fseek 和 ftell 的情况下在 ANSI C 中获取文件大小?

C语言ftell()函数

C语言ftell()函数