W3Schools.com

PHP dir() Function


PHP Directory Reference Complete PHP Directory Reference

Definition and Usage

The dir() function opens a directory handle and returns an object. The object contains three methods called read() , rewind() , and close() .

This function returns a directory stream on success and FALSE and an error on failure. You can hide the error output by adding an '@' in front of the function name.

Syntax

dir(directory)

Parameter Description
directory Required. Specifies the directory to stream


Example 1

<?php
//Open images directory
$dir = dir("images");

//List files in images directory
while (($file = $dir->read()) !== false)
{
echo "filename: " . $file . "<br />";
}

$dir->close();
?>

The output of the code above could be:

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


Example 2

This example hides the error if dir() fails:

<?php
//Open images directory
$dir = @ dir("images");

//List files in images directory
while (($file = $dir->read()) !== false)
  {
  echo "filename: " . $file . "<br />";
  }

$dir->close();
?>

The output of the code above could be:

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


PHP Directory Reference Complete PHP Directory Reference
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
Download XML Editor
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE