PHP rewinddir() Function

The rewinddir() function resets the directory handle created by opendir().

void rewinddir ([ resource $dir_handle ] )

Resets the directory stream indicated by dir_handle to the beginning of the directory.

Example -

Result -

filename: cat.gif
filename: dog.gif
filename: horse.gif
filename: cat.gif
filename: dog.gif
filename: horse.gif

ParameterDescription
dir_handleThe directory handle resource previously opened with opendir(). If the directory handle is not specified, the last link opened by opendir() is assumed.