php8.5
Home/ Manual/ dir / functions/ dir

dir

PHP function Edit on GitHub ✎

(PHP 4, PHP 5, PHP 7, PHP 8)

Return an instance of the Directory class

Description

dir(string $directory, resource|null $context = null): Directory|false

A pseudo-object-oriented mechanism for reading a directory. The given directory is opened.

Parameters

directory

Directory to open

context

Context-support

Return Values

Returns an instance of Directory, or false in case of error.

Changelog

VersionDescription
8.0.0context is now nullable.

Examples

dir() example

Please note the fashion in which Directory::read()'s return value is checked in the example below. We are explicitly testing whether the return value is identical to (equal to and of the same type as - see Comparison Operators for more information) false since otherwise, any directory entry whose name evaluates to false will stop the loop.

php
<?php
$d = dir("/etc/php5");
echo "Handle: " . $d->handle . "\n";
echo "Path: " . $d->path . "\n";
while (false !== ($entry = $d->read())) {
   echo $entry."\n";
}
$d->close();
?>

The above example will output something similar to:

output
Handle: Resource id #2
Path: /etc/php5
.
..
apache
cgi
cli

Notes

Note

The order in which directory entries are returned by the read method is system-dependent.

Source: reference/dir/functions/dir.xml · from the official PHP manual (php/doc-en)