我想要一个目录中的所有 CSV 文件,所以我使用
glob('my/dir/*.CSV')
但是,这不会找到具有小写 CSV 扩展名的文件。
我可以使用
glob('my/dir/*.{CSV,csv}', GLOB_BRACE);
但是有没有办法允许所有混合大小写版本?或者这只是一个限制glob()
?
我想要一个目录中的所有 CSV 文件,所以我使用
glob('my/dir/*.CSV')
但是,这不会找到具有小写 CSV 扩展名的文件。
我可以使用
glob('my/dir/*.{CSV,csv}', GLOB_BRACE);
但是有没有办法允许所有混合大小写版本?或者这只是一个限制glob()
?
Glob 模式支持字符范围:
glob('my/dir/*.[cC][sS][vV]')
你可以这样做
$files = glob('my/dir/*');
$csvFiles = preg_grep('/\.csv$/i', $files);
glob('my/dir/*.[cC][sS][vV]')
应该这样做。是的,有点丑。
您也可以在选择所有文件后过滤掉文件
foreach(glob('my/dir/*') as $file){
$ext = strtolower(pathinfo($file, PATHINFO_EXTENSION));
if(!in_array($ext, array('csv'))){
continue;
}
... do stuff ...
}
就性能而言,这可能不是最佳选择,例如,如果文件夹中有 100 万个不是 csv 的文件。
此代码适用于我仅获取图像且不区分大小写。
图片列表:
$imageOnly = '*.{[jJ][pP][gG],[jJ][pP][eE][gG],[pP][nN][gG],[gG][iI][fF]}';
$arr_files = (array) glob($path . $imageOnly, GLOB_BRACE);
也许它看起来很难看,但您只需声明一次 $imageOnly 并可以在需要时使用它。您还可以声明 $jpgOnly 等。
我什至做了一个函数来创建这个模式。
/*--------------------------------------------------------------------------
* create case insensitive patterns for glob or simular functions
* ['jpg','gif'] as input
* converted to: *.{[Jj][Pp][Gg],[Gg][Ii][Ff]}
*/
function globCaseInsensitivePattern($arr_extensions = []) {
$opbouw = '';
$comma = '';
foreach ($arr_extensions as $ext) {
$opbouw .= $comma;
$comma = ',';
foreach (str_split($ext) as $letter) {
$opbouw .= '[' . strtoupper($letter) . strtolower($letter) . ']';
}
}
if ($opbouw) {
return '*.{' . $opbouw . '}';
}
// if no pattern given show all
return '*';
} // end function
$arr_extensions = [
'jpg',
'jpeg',
'png',
'gif',
];
$imageOnly = globCaseInsensitivePattern($arr_extensions);
$arr_files = (array) glob($path . $imageOnly, GLOB_BRACE);
我听说过一个可以像这样使用的功能:试试它是否适合你!
<?php
$pattern = sql_regcase("*.txt");
glob($pattern);
?>
您可以编写自己的不区分大小写的 glob。这是来自我写的个人网络图书馆:
/** PHP has no case insensitive globbing
* so we have to build our own.
*
* $base will be the initial part of the path which doesn't need case insensitive
* globbing.
* Suffix is similar - it will not be made insensitive
* Make good use of $base and $suffix to keep $pat simple and fast in use.
*/
function ciGlob($pat, $base = '', $suffix = '')
{
$p = $base;
for($x=0; $x<strlen($pat); $x++)
{
$c = substr($pat, $x, 1);
if( preg_match("/[^A-Za-z]/", $c) )
{
$p .= $c;
continue;
}
$a = strtolower($c);
$b = strtoupper($c);
$p .= "[{$a}{$b}]";
}
$p .= $suffix;
return glob($p);
}
来到此链接以获取包含多个文件的 glob。虽然它对 OP 没有帮助,但它可能会帮助到这里的其他人。
$file_type = 'csv,jpeg,gif,png,jpg';
$i = '0';
foreach(explode(",",$file_type) as $row){
if ($i == '0') {
$file_types = $row.','.strtoupper($row);
} else {
$file_types .= ','.$row.','.strtoupper($row);
}
$i++;
}
$files = glob($dir."*.{".$image_types."}",GLOB_BRACE);
基于 Alex 的提示,这通常会有所帮助:
function glob_files ($d, $e)
{
$files = preg_grep ("/$e\$/i", glob ("$d/*"));
sort ($files)
return $files;
}
$d
目录在哪里$e
,扩展名在哪里。
要使其适用于所有扩展,请使用:
$extension = 'some_extension';
glob('my/dir/*.preg_replace('/(\w)/e', "'['.strtoupper($1).strtolower($1).']'", $extension));