DirectoryIterator::seek
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
DirectoryIterator::seek — DirectoryIterator のアイテムを移動する
パラメータ
offset
-
異動先を表す、ゼロから始まる位置。
戻り値
値を返しません。
例
例1 DirectoryIterator::seek() の例
スクリプトを含むディレクトリの四番目のアイテムに移動します。
最初の二つは、通常は .
と ..
です。
<?php
$iterator = new DirectoryIterator(dirname(__FILE__));
$iterator->seek(3);
if ($iterator->valid()) {
echo $iterator->getFilename();
} else {
echo 'No file at position 3';
}
?>
参考
- DirectoryIterator::rewind() - DirectoryIterator を最初に巻き戻す
- DirectoryIterator::next() - 次の DirectoryIterator アイテムに移動する
- SeekableIterator::seek() - 位置を移動する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google