Use php to get the number of files in the folder

Source: Internet
Author: User
Welcome to the Linux community forum and interact with 2 million technical staff. Use php to get the number of files in a specified folder: Use PHP to read the number of files in a folder, for example, there is a Picture folder, there are 200 images in it. The following function shows that the total number of images is 200 .? Php $ dir. picture; $ handleopendi

Welcome to the Linux community forum and interact with 2 million technical staff> go to php to get the number of files in a specified folder: How many files are read in a folder using PHP, for example, if there is a Picture folder with 200 images in it, the following function shows that its total number is 200 .? Php $ dir = './picture'; $ handle = opendi

Welcome to the Linux community forum and interact with 2 million technicians>

Use php to obtain the number of files in a specified folder:

Use PHP to read the number of files in a folder. For example, if there is a Picture folder with 200 images, the following function will display a total of 200 images.

$ Dir = './picture ';

$ Handle = opendir ($ dir );

$ I = 0;

While (false! ==$ File = (readdir ($ handle ))){

If ($ file! = '.' | $ File! = ''){

$ I;

}

}

Closedir ($ handle );

Echo $ I;

?>

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.