最新的Web开发教程
 

PHP ftell() Function


<完整PHP文件系统参考

定义和用法

ftell()函数返回一个打开的文件的当前位置。

返回当前的文件指针位置,或FALSE的失败。

句法

ftell(file)

参数 描述
file 需要。 指定打开的文件检查

<?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);
?>

代码的输出将是:

0
15

<完整PHP文件系统参考