从打开的文件中读取第一行,然后将文件指针移回到文件的开头:
<?php
$file = fopen("test.txt","r");
// Read first line
echo fgets($file);
// Move back to beginning of file
fseek($file,0);
fclose($file);
?>
运行示例 »
fseek() 函数在打开的文件中查找。
此函数将文件指针从当前位置移动到新位置(向前或向后,由字节数指定)。
提示:您可以使用ftell()找到当前位置!
fseek(
file,
offset,
whence)
Parameter | Description |
---|---|
file | Required. Specifies the open file to seek in |
offset | Required. Specifies the new position (measured in bytes from the beginning of the file) |
whence | Optional. Possible values:
|
返回值: | 成功时为 0,否则为 -1 |
---|---|
PHP 版本: | 4.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!