我想掃描一個具有圖像文件的目錄,並用它們填充我的數據庫。這些圖像具有常規和受控名稱,如top_1,top_200,bottom_3。我需要與正則表達式相匹配的正則表達式,因爲它們中的每一個在數據庫中都有不同的關係。從目錄填充數據庫
我有什麼權利現在掃描目錄:
function scan_img_dir()
{
$dir = '/images/';
$scan = scandir($dir);
for ($i=0; $i<count($scan); $i++)
{
//Being Pseudocode
$stringBeforeUnderscore = Some_String_Manipulation($scan[$i]);
switch($stringBeforeUnderscore)
{
case 'top':
insert into db with the top relationship
break;
case 'bottom':
insert into db with the bottom relationship
break;
}
}
}
與代碼拉弦任何幫助之前,「_」將是巨大的。任何幫助改善邏輯或代碼否則將錦上添花!提前致謝。
$ A =爆炸( '_',$文件名); – Teson 2011-03-24 20:06:06
這工作完美。謝謝。我接受了接受的答案,因爲它更簡單,並沒有爆炸成一個數組。 – Rapture 2011-03-24 20:16:47