返回打开文件中读/写指针的当前位置:
<?php
$file = fopen("test.txt","r");
// Print current position
echo ftell($file);
// Change current position
fseek($file,"15");
// Print current position again
echo "<br>" . ftell($file);
fclose($file);
?>
运行示例 »
ftell() 函数返回打开文件中读/写指针的当前位置。
ftell(
file)
Parameter | Description |
---|---|
file | Required. Specifies the open file to check |
返回值: | 文件指针位置,如果失败则为 FALSE。 |
---|---|
PHP 版本: | 4.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!