How to List Directory Files in PHP using `scandir()`?

Patricia Arquette
Release: 2024-11-20 17:37:11
Original
775 people have browsed it

How to List Directory Files in PHP using `scandir()`?

How to List Directory Files in PHP

Question:

How can you list all the files in a specific directory using PHP?

Answer:

The scandir() function provides a convenient way to list files in a directory. For example, the following code retrieves a list of files from the usernames directory:

$path = '/path/to/usernames';
$files = scandir($path);
Copy after login

Additional Considerations:

  • The scandir() function includes hidden files (those starting with a period) in the results. To remove hidden files, you can use the array_diff() function:
$files = array_diff(scandir($path), array('.', '..'));
Copy after login
  • The scandir() function sorts the results alphabetically. If you need a different sorting order, you can use the natsort() or usort() functions.

The above is the detailed content of How to List Directory Files in PHP using `scandir()`?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template