我想弄清楚,如果我能做到一個數組while循環內的數組?
while($row = $retail -> fetch(PDO::FETCH_ASSOC)){
$json['data'][] = array(
'id'=>$row['idretailers'],
"category"=>$row['category'],
"headline"=>$row['headline'],
'price'=> array ("full_price" => $row['price']),
'description'=>$row['description'],
"comments" => array(
while($row_c = $comments -> fetch(PDO::FETCH_ASSOC)){
// more items
})
);
}
有意見中的while循環while循環,這可能嗎?
謝謝!
你試過了嗎? –
只需嘗試一下,看看你會得到一個語法錯誤,並嘗試一種不同的方法。短:不,這是不可能的。 – Yoshi
它的可能,除非你嘗試 – Khurram