PHP fseek() 函數(shù)
PHP fseek() 函數(shù)

定義和用法
fseek() 函數(shù)在打開的文件中定位。
該函數(shù)把文件指針從當(dāng)前位置向前或向后移動(dòng)到新的位置,新位置從文件頭開始以字節(jié)數(shù)度量。
如果成功該函數(shù)返回 0,如果失敗則返回 -1。請(qǐng)注意,移動(dòng)到文件末尾(EOF)之后的位置不會(huì)產(chǎn)生錯(cuò)誤。
語法
fseek(file,offset,whence)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要在其中定位的文件。 |
offset | 必需。規(guī)定新的位置(從文件頭開始以字節(jié)數(shù)度量)。 |
whence | 可選。(PHP 4 中新增的)。 可能的值:
|
提示和注釋
提示:通過使用 ftell() 來找到當(dāng)前位置!
實(shí)例
<?php
$file = fopen("test.txt","r");
// read first line
fgets($file);
// move back to beginning of file
fseek($file,0);
?>
$file = fopen("test.txt","r");
// read first line
fgets($file);
// move back to beginning of file
fseek($file,0);
?>

相關(guān)文章
- PHP 簡介
- PHP 字符串
- PHP Switch 語句
- PHP 異常處理
- PHP 過濾器
- PHP JSON
- PHP array_diff_uassoc() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP compact() 函數(shù)
- PHP list() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP Libxml 函數(shù)
- PHP 雜項(xiàng) 函數(shù)