FilesystemIterator::rewind

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

FilesystemIterator::rewind先頭に巻き戻す

説明

public FilesystemIterator::rewind(): void

ディレクトリを先頭に巻き戻します。

パラメータ

この関数にはパラメータはありません。

戻り値

値を返しません。

例1 FilesystemIterator::rewind() の例

<?php
$iterator
= new FilesystemIterator(dirname(__FILE__), FilesystemIterator::KEY_AS_FILENAME);

echo
$iterator->key() . "\n";

$iterator->next();
echo
$iterator->key() . "\n";

$iterator->rewind();
echo
$iterator->key() . "\n";
?>

上の例の出力は、 たとえば以下のようになります。

apple.jpg
banana.jpg
apple.jpg

参考

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top