我有以下 php 數(shù)組:Array ( [0] => fdsa.txt [1] => lubuntu-19.10-desktop-amd64.iso [2] => Solicitacao_de_Liberacao_a_Rede_WIFI.xlsx [teste\] => Array ( [0] => pasta1.txt [1] => pasta2.txt ) [teste2\] => Array ( [0] => pasta3.txt [1] => pasta4.txt ) )我想用來(lái)foreach遍歷數(shù)組并回顯所有內(nèi)容foreach($map as $arquivo){ echo $arquivo."<br/>"; }但我想顯示數(shù)組的名稱,而不是像這樣顯示其中的內(nèi)容:fdsa.txt lubuntu-19.10-desktop-amd64.isoSolicitacao_de_Liberacao_a_Rede_WIFI.xlsxteste\teste2\
1 回答

慕容708150
TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超4個(gè)贊
我會(huì)用它is_array來(lái)測(cè)試它是否是一個(gè)數(shù)組——如果它是..然后顯示key而不是value.. IE
foreach($map as $key => $arquivo){
if ( is_array($arquivo) ){
echo "$key <br/>";
}else{
echo "$arquivo <br/>";
}
}
echo旁注——如果您使用單個(gè)變量和雙引號(hào),則無(wú)需連接您的語(yǔ)句。只是為了更清晰的代碼。
- 1 回答
- 0 關(guān)注
- 105 瀏覽
添加回答
舉報(bào)
0/150
提交
取消