我是PHP新手我正在嘗試獲取foreach
循環結果。 迴路我有PHP從foreach循環獲取結果
foreach($results as $result){
$result = $result['names'];
}
在循環中是strings (John, Fred, Ann)
;
我試圖讓這個外部的循環,當我嘗試echo $結果我只有約翰,我該怎麼做才能得到所有三個名字?
我試圖創建一個像
$resultData= array();
foreach($results as $result){
$resultData = $result['names'];
}
echo $resultData;
這不起作用的數組,沒有任何人有什麼建議?
更新問題: 當我嘗試var_dump($resultData)
我越來越
string(7) "John" string(7)"Fred" string(7)"Ann"
你試過'array_push()'? –
你應該參考這個主題的更多手冊,這只是簡單的數組使用 – Ghost
你可以嘗試爆炸在每個循環? –