SplFileObject::rewind()函數是PHP中的標準PHP庫(SPL)的內置函數,用於將文件倒回第一行。
用法:
void SplFileObject::rewind( $line_num)
參數:該函數不接受任何參數。
返回值:該函數不返回任何值。
以下示例程序旨在說明PHP中的SplFileObject::rewind()函數:
程序1:
<?php
// PHP program to illustrate
// SplFileObject Seek function
$file = new SplFileObject(__FILE__);
$file->rewind();
echo $file->current();
?>
輸出:
<?php
程序2:
<?php
// PHP program to use array to check
// multiple files
$GFG = array(
"/home/rajvir/Desktop/GeeksforGeeks/dummy.php",
"gfg.txt",
"mime.php"
);
foreach ($GFG as &$file_name) {
$file = new SplFileObject($file_name);
$file->rewind();
echo $file->current();
}
?>
輸出:
GeeksforGeeks gfg contribute
參考: http://php.net/manual/en/splfileobject.rewind.php
相關用法
- PHP rewind( )用法及代碼示例
- PHP SplFileObject eof()用法及代碼示例
- PHP SplFileObject fgets()用法及代碼示例
- PHP DirectoryIterator rewind()用法及代碼示例
- PHP SplFileObject fgetss()用法及代碼示例
- PHP SplFileObject flock()用法及代碼示例
- PHP SplFileObject setMaxLineLen()用法及代碼示例
- PHP SplFixedArray rewind()用法及代碼示例
- PHP SimpleXMLIterator rewind()用法及代碼示例
- PHP CachingIterator rewind()用法及代碼示例
- PHP FilesystemIterator rewind()用法及代碼示例
- PHP AppendIterator rewind()用法及代碼示例
- PHP SplFileObject fgetc()用法及代碼示例
- PHP SplFileObject current( )用法及代碼示例
- PHP ArrayIterator rewind()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFileObject rewind() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。