gpt4 book ai didi

php - 从 scandir 中排除隐藏文件

转载 作者:IT王子 更新时间:2023-10-29 01:05:30 29 4
gpt4 key购买 nike

我正在使用以下代码来获取目录中的图像列表:

$files = scandir($imagepath);

$files 也包括隐藏文件。如何排除它们?

最佳答案

在 Unix 上,您可以使用 preg_grep过滤掉以点开头的文件名:

$files = preg_grep('/^([^.])/', scandir($imagepath));

关于php - 从 scandir 中排除隐藏文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8532569/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com