📅  最后修改于: 2023-12-03 14:45:18.797000             🧑  作者: Mango
rewind()
函数用于将文件指针回到文件开头处。
void rewind ( resource $handle )
handle
:必需。规定要回到开头处的打开文件的文件指针。
该函数没有返回值。
rewind()
函数主要用于重置文件指针,以便之后对文件内容的读写能够从文件开头位置开始。
以下示例演示了如何使用 rewind()
函数将文件指针回到文件开头处:
$file = fopen("example.txt", "r");
// Output the first line of the file
echo fgets($file);
// Rewind the file pointer
rewind($file);
// Output the first line of the file again
echo fgets($file);
fclose($file);
输出:
This is the first line of the file.
This is the first line of the file.