UK[ˌri:ˈwaɪnd] US[riˈwaɪnd]

v. Rewind; rewind (video, audio tape, etc.)

n. Rewind; rewinder

Third person singular: rewinds Plural: rewinds Present participle: rewinding Past tense: rewound Past participle: rewound

php rewinddir() function syntax

Function:Reset the directory handle created by opendir().

Syntax:rewinddir(dir_handle)

Parameters:

Parameter Description
dir_handle Optional. Specifies a directory handle resource previously opened by opendir(). If this parameter is not specified, the last link opened by opendir() is used.

Description:Reset the directory handle created by opendir().

php rewinddir() function example

"; } //重置目录句柄 rewinddir(); while (($file = readdir($dh)) !== false) { echo "filename:" . $file . "
"; } } ?>