fseek()函數(shù)可以在打開的文件中查找。此函數(shù)可以將文件指針從其當(dāng)前位置向前或向后移動(dòng)到新位置,該位置由字節(jié)數(shù)指定。成功時(shí)此函數(shù)可以返回0,失敗時(shí)可以返回-1。尋找過去的EOF不會(huì)產(chǎn)生錯(cuò)誤。
int fseek ( resource $handle , int $offset [, int $whence = SEEK_SET ] )
fseek()函數(shù)在與 handle 關(guān)聯(lián)的文件中設(shè)定文件指針位置。 新位置從文件頭開始以字節(jié)數(shù)度量,是以 whence 指定的位置加上 offset。
<?php $file = fopen("/PhpProject/sample.txt", "r"); //讀第一行 echo fgets($file); //移回文件開頭 fseek($file, 0); echo fgets($file); ?>
輸出結(jié)果
nhooo nhooo