我想讓我的代碼工作。我基本上檢查,如果一個文件夾存在,並且該目錄中存在任何子文件夾稱爲3或更多(3,4,5),然後做一個循環,否則沒有。PHP如果文件夾存在爲每個子文件夾做一個循環
// the folder path
$folderPath="".cdnurl."assets/".pid."";
// looks like site.com/assets/342/
// is there a sub folder called 3 or more, 3,4,5 and loop from 3
// site.com/assets/342/3
// site.com/assets/342/4
// etc, we only loop if 3 exists other wise nothing
$folderSubNumber =>3;
while(file_exists($folderPath.$folderSubNumber)) {
echo '<li><img src="assets/pid/'.folderSubNumber.'';
} else {
// nothing
echo "";
}
而你的問題是什麼? – genesis
while(){} else {}''''''''''''''''''''''''''''''''''''''echo'''''''''''''''$ folderSubNumber => 3;'$ folderSubNumber = 3; '('=>'僅適用於數組鍵/值)。 –
PHP沒有while(){} else {}語句,請嘗試刪除else {}並查看會發生什麼。 – csjohn