新人提问:不明白ftell()解决思路

WBOY
Release: 2016-06-13 13:24:33
Original
1089 people have browsed it

新人提问:不明白ftell()
$fp = fopen('exa', 'r');

$data = fgets($fp, 15);

echo ftell($fp);

fclose($fp);
?>

这个例子中输出:13
若15改成1046之类的比较大的数,也输出13;
若15改成13,则输出12


究竟是怎么回事呢?

------解决方案--------------------
首先,你的'exa'文件这一行的指针宽度是13,而指针起始是从0开始,因此当你选择15或者更大的时候,只要超过本身宽度,那么只能输出最大的宽度,也就是13.
其次,由于指针是从0开始算的,所以$data = fgets($fp, num);,而指针实际是从0开始,那么ftell($fp)的值肯定是num-1,比如你fgets($fp, 5),那么ftell($fp)就会是4。
所以你“若15改成13,则输出12”,是因为13没有超过最大宽度,因此输出的是13-1。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template