ftell() 函数可以返回打开文件中的当前位置。它可以在成功或失败时返回当前文件指针位置。
用法
int ftell ( resource $handle )
该函数可以返回句柄引用的文件指针的位置,即它在文件流中的偏移量。
示例1
<?php
$file = fopen("/PhpProject/sample.txt", "r");
// print current position
echo ftell($file);
// change current position
fseek($file, "10");
// print current position again
echo "\n" . ftell($file);
fclose($file);
?>
输出
0 10
示例2
<?php
// opens a file and read data
$file = fopen("/PhpProject/sample.txt", "r");
$data = fgets($file, 7);
echo ftell($file);
fclose($file);
?>
输出
6
相关用法
- PHP ftell()用法及代码示例
- PHP ftell( )用法及代码示例
- PHP ftruncate( )用法及代码示例
- PHP ftp_rawlist()用法及代码示例
- PHP ftp_close()用法及代码示例
- PHP ftp_nb_put()用法及代码示例
- PHP ftp_chmod()用法及代码示例
- PHP ftp_nb_fget()用法及代码示例
- PHP ftp_rmdir()用法及代码示例
- PHP ftp_size()用法及代码示例
- PHP ftp_login()用法及代码示例
- PHP ftp_rename()用法及代码示例
- PHP ftp_put()用法及代码示例
- PHP ftp_connect()用法及代码示例
- PHP ftp_site()用法及代码示例
- PHP ftp_set_option()用法及代码示例
- PHP ftp_pwd()用法及代码示例
- PHP ftp_get_option()用法及代码示例
- PHP ftp_nb_fput()用法及代码示例
- PHP ftp_fget()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function ftell()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。