PHP closedir function

Source: Internet
Author: User

PHP closedir function


Closedir
(PHP 4, PHP 5)

Closedir-Close Directory handle

Report Error description
Invalid Closedir ([resource $ dir_handle specified])
Closes the directory stream dir_handle specified. The stream must have been opened Opendir ().

Report Error parameters

Dir_handle specified
The directory that processed the resource was previously opened with Opendir (). If the directory handle is not specified, the last link is opened by Opendir ().

Look at an example

<?php
$dir = "/etc/php5/";

Open a known directory, read directory into variable and then close
if (Is_dir ($dir)) {
if ($dh = Opendir ($dir)) {
$directory = Readdir ($DH);
Closedir ($DH);
}
}
?>


Example
<?php
Open Images Directory
$dir = Opendir ("Images");

Listing files in the images directory
while (($file = Readdir ($dir))!== false)
{
echo "FileName:". $file. "<br/>";
}
Closedir ($dir);
?>

FileName:.
FileName:.
Filename:cat.gif
Filename:dog.gif
Filename:food
Filename:horse.gif

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.