Я ищу файл с именем, похожим на эту строку: .047b2edb.ico
Я не уверен, как добавить «ico
«расширение моего preg_match
функция.
[.a-zA-Z0-9]
Мы ценим любые предложения
Это весь мой код. С этим кодом я не могу найти файл с именем .62045303.ico, где проблема?
<?php
$filepath = recursiveScan('/public_html/');
function recursiveScan($dir) {
$tree = glob(rtrim($dir, '/') . '/*');
if (is_array($tree)) {
foreach($tree as $file) {
if (is_dir($file)) {
//echo $file . '<br/>';
recursiveScan($file);
} elseif (is_file($file)) {
if (preg_match_all("(/[.a-zA-Z0-9]+\.ico/)", $file )) {
//echo $file . '<br/>';
unlink($file);
}
}
}
}
}
?>
[.a-zA-Z0-9]+\.ico
сделаю это.
Объяснение:
[.a-zA-Z0-9] match a character which is a dot, a-z, A-Z or 0-9
+ match one or more of these characters
\.ico match literally dot followed by "ico".
the backslash is needed to escape the dot as it is a metacharacter
Пример:
$string = 'the filenames are .asdf.ico and fdsa.ico';
preg_match_all('/[.a-zA-Z0-9]+\.ico/', $string, $matches);
print_r($matches);
Выход:
Array
(
[0] => Array
(
[0] => .asdf.ico
[1] => fdsa.ico
)
)
В зависимости от того, что вы хотите соответствовать, это может быть полезно для вас
([.a-zA-Z0-9]+)(\.ico)