PHP中的ftell()函数是一个内置函数,用于返回打开文件中的当前位置。该文件将作为参数发送到ftell()函数,如果成功,则返回当前文件指针位置;如果失败,则返回FALSE。
用法:
ftell( $file )
使用的参数:PHP中的ftell()函数仅接受一个参数$file。它是指定文件的必需参数。
返回值:成功时返回当前文件指针位置,失败时返回FALSE。
异常:
- 由于PHP的整数类型是带符号的,并且许多平台使用32位整数,因此某些文件系统函数可能会对大于2GB的文件返回意外结果。
- 当通过fopen('file','a +')打开文件进行读写时,文件指针应位于文件末尾。
例子:
Input : $myfile = fopen("gfg.txt", "r"); echo ftell($myfile); Output : 0 Input : $myfile = fopen("gfg.txt", "r"); echo ftell($myfile); fseek($myfile, "36"); echo ftell($myfile); Output : 0 36
以下示例程序旨在说明ftell()函数:
程序1::在下面的程序中,名为gfg.txt的文件包含以下内容。
Geeksforgeeks is a portal for geeks!
<?php
// Opening a file in read. mode
$myfile = fopen("gfg.txt", "r");
// displaying the current position of the pointer in the opened file
echo ftell($myfile);
// closing the file
fclose($myfile);
?>
输出:
0
程序2::在下面的程序中,名为gfg.txt的文件包含以下内容。
Geeksforgeeks is a portal for geeks!
<?php
// Opening a file in read. mode
$myfile = fopen("gfg.txt", "r");
// displaying the current position of the pointer in the opened file
echo ftell($myfile);
// chnaging current position
fseek($myfile, "36");
//displaying current position
echo "<br />" . ftell($myfile);
// closing the file
fclose($myfile);
?>
输出:
0 36
参考: http://php.net/manual/en/function.ftell.php
相关用法
- PHP SplFileObject ftell()用法及代码示例
- d3.js d3.lab()用法及代码示例
- p5.js nfp()用法及代码示例
- p5.js nfs()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- p5.js nfc()用法及代码示例
- PHP cos( )用法及代码示例
- p5.js nf()用法及代码示例
- PHP tan( )用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- CSS var()用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | ftell() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。