gpt4 book ai didi

php - 如何让 PHP 查找包含某些内容的文件名

转载 作者:可可西里 更新时间:2023-11-01 00:03:26 24 4
gpt4 key购买 nike

我正在尝试这样做:

$filename = "/destination/destination2/file_*";

"* "= 任何内容

目标 2 文件:

file_somethingrandom

因为它 $filename 包含 * 所以它应该选择 file_somethingrandom

怎么做?

最佳答案

使用 glob()像这样的功能:

$filename = "/destination/destination2/file_*";
foreach (glob($filename) as $filefound)
{
echo "$filefound size " . filesize($filefound) . "\n";
}

关于php - 如何让 PHP 查找包含某些内容的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9943240/

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