(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::ftell — 返回当前文件位置
此函数没有参数。
返回文件指针的位置,以整数形式表示,如果发生错误,则返回 **false
**。
示例 #1 SplFileObject::ftell() 示例
<?php
$file = new SplFileObject("/etc/passwd");
// 读取第一行
$data = $file->fgets();
// 我们在哪里?
echo $file->ftell();
?>