我有我的根文件夾有幾個子文件夾,包含圖像,用文件名如:product_109847_300x220。所有圖像名稱都包含圖像大小(例如:300x220)。我可以搜索用PHP文件夾?
我想搜索與PHP的文件夾和打印有「300x220」,在它的文件名的所有圖像。我應該怎麼做?
謝謝!
我有我的根文件夾有幾個子文件夾,包含圖像,用文件名如:product_109847_300x220。所有圖像名稱都包含圖像大小(例如:300x220)。我可以搜索用PHP文件夾?
我想搜索與PHP的文件夾和打印有「300x220」,在它的文件名的所有圖像。我應該怎麼做?
謝謝!
<?php
$it = new RecursiveDirectoryIterator("/tmp");
foreach(new RecursiveIteratorIterator($it) as $file) {
// do your string comparison on file name here and process it
}
?>
在php中使用* dir函數(opendir,readdir,...),然後操作文件名以查找「300x200」 – KLK1 2013-04-26 08:24:42
RTFM http://www.php.net/manual/en/function.scandir.php – Mike 2013-04-26 08:26:28
請在你問之前只搜索一次。它比使用stackoverflow註冊更快。 http://google.com/?q=search+directory+php – nvanesch 2013-04-26 08:27:48