readdir

Read entry from directory handle

Description

stringfalse readdir(resourcenull $dir_handle = null)

Returns the name of the next entry in the directory. The entries are returned in the order in which they are stored by the filesystem.

Parameters

dir_handle
A directory handle resource previously opened with opendir. If dir_handle is null the last handle opened using opendir will be used.

Return Values

Returns the entry name on success, or false on failure.

Warning

This function may return Boolean false, but may also return a non-Boolean value which evaluates to false. Please read the section on Booleans for more information. Use the === operator for testing the return value of this function.

Changelog

Version Description
8.5.0 Using null for dir_handle is now deprecated. Instead, the last opened directory handle should be explicitly provided.
8.0.0 dir_handle is now nullable.

Examples

For a complete example refer to the opendir documentation.

See Also

  • opendir
  • rewinddir
  • closedir
  • dir
  • is_dir
  • glob
  • scandir