百科狗-知识改变命运!
--

ftell() - 返回文件指针读/写的位置 - php 文件目录函数

是丫丫呀1年前 (2023-11-21)阅读数 21#技术干货
文章标签文件

ftell()

(PHP 4, PHP 5, PHP 7)

返回文件指针读/写的位置

说明

ftell(resource $handle): int

返回由$handle指定的文件指针的位置,也就是文件流中的偏移量。

参数

$handle

文件指针必须是有效的,且必须指向一个通过fopen()或popen()成功打开的文件。在附加模式(加参数"a"打开文件)中ftell()会返回未定义错误。

返回值

Returns the position of the file pointer referenced by$handleas an integer; i.e., its offset into the file stream.

如果出错,返回FALSE

范例

ftell() - 返回文件指针读/写的位置 - php 文件目录函数

Example #1ftell()例子

参见

  • fopen() 打开文件或者 URL
  • popen() 打开进程文件指针
  • fseek() 在文件指针中定位
  • rewind() 倒回文件指针的位置
When opening a file for reading and writing via fopen('file','a+') the file pointer should be at the end of the file. However ftell() returns int(0) even if the file is not empty. Also it seems that there is two pointers, first for reading and second for writing, because it acts differently on first operation (reading or writing).
Example:

Result:
0 "123456789" 9
0 "123456789" 9
2 "3456789" 9
2 "" 2
0 "rr3456789aa" 11
When opening a file to append via fopen('file','ab') the file pointer should be at the end of the file. However ftell() returns int(0) even if the file is not empty and even after writing some text into the file.
In response to php at michielvleugel dot com:
This does not seem to be the case with PHP 5.2.0 and FreeBSD 5.4.
#!/usr/local/bin/php

root@localhost:/home/david# echo Hello World | ./test.php
int(0)
root@localhost:/home/david# ./test.php
int(6629927)
When something is piped to the script, it returns an integer value of 0, however, it also returns an integer when nothing is piped to the script.
The code should be modified to this:
#!/usr/local/bin/php

And the result is:
root@localhost:/home/david# echo Hello World | ./test.php
Something was piped: Hello World
root@localhost:/home/david# ./test.php
Nothing was piped
Attention! If you open a file with the "text"-modifier (e.g. 'rt') and the file contains \r\n as line-endings, ftell() returns the position as if there were only \n as line-endings.
Example:
If the first line only contains 1 char followed by \r\n, the start of the second line should be position 3. (1char + \r + \n = 3 bytes) But ftell() will return 2 - ignoring one byte. If you call ftell() in line 3, the value will differ from the real value by 2 bytes. The error gets greater with every line.
(Watched this behavior in PHP 5.0.4 for Windows.)
BUT: fseek() works as expected - using the true byte values.
Actually, ftell() gives more than an undefined result for append only streams; it gives the offset from the end of the file as defined before any data was appended. So if you open a file that had 3017 characters, and append 41 characters, and then execute ftell(), the value returned will be 41.
When trying to determine whether or not something was piped into a command line script, it is not smart to do a fgets(STDIN), because it will wait indefenitely if nothing is piped. Instead, I found ftell on STDIN to be very handy: it will return an integer of zero when something was piped, and nothing if nothing was piped to the script.
#!/usr/bin/php4 -q 

鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com

免责声明:我们致力于保护作者版权,注重分享,当前被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理!邮箱:344225443@qq.com)

图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!

内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)