PHP fseek() 函數
PHP fseek() 函數

定義和用法
fseek() 函數在打開的文件中定位。
該函數把文件指針從當前位置向前或向后移動到新的位置,新位置從文件頭開始以字節數度量。
如果成功該函數返回 0,如果失敗則返回 -1。請注意,移動到文件末尾(EOF)之后的位置不會產生錯誤。
語法
fseek(file,offset,whence)
參數 | 描述 |
---|---|
file | 必需。規定要在其中定位的文件。 |
offset | 必需。規定新的位置(從文件頭開始以字節數度量)。 |
whence | 可選。(PHP 4 中新增的)。 可能的值:
|
提示和注釋
提示:通過使用 ftell() 來找到當前位置!
實例
<?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);
?>

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