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;
?>