我想循環瀏覽文件夾中的圖像和縮略圖,並將它們插入到數據庫中。 我想用is_dir過濾掉目錄。is_dir不適用於循環
我:
$images = scandir('./images/all_comics/');
$thumbs = scandir('./images/thumbnails/');
for($x=0; $x<count($images); $x++)
{
if(!is_dir($images[$x]))
{
//This shows all images WITHOUT directories
echo $images[$x];
//This is STILL adding images AND directories to database
mysql_query("INSERT INTO images (imgpath, thumbpath) VALUES ('$images[$x]', '$thumbs[$x]')");
}
}
我在那裏有一個支票直接is_dir後,回聲$圖像[$ X],其回聲的所有圖像,而無需目錄,按照需要!
但是,當我檢查數據庫中的插入,我看到目錄已添加爲記錄。爲什麼是這樣?
謝謝!
使用'glob' - '$圖像=水珠( './圖像/ all_comics/* JPG');',相應地更改格式。 – moonwave99