我想獲得類似於將數據添加到數組上的內容,但是當我使用此方法時,會在json元素中創建兩個節點。我只想要一個包含所有實體的節點,還可以命名節點,即屬性。Json數組添加到php數組
$json = array();
while($row = mysql_fetch_assoc($sth)) {
$json['name'] = $row['name'];
$json['id'] = $row['id'];
$data[] = $json;
}
$custom = array('name'=>'foo', 'id' => 'bar');
$data[] = $custom;
你可以添加你得到什麼,你期待? – Naruto
像這樣'{name:[「foo」,「bar」],id:[1,2]}'??? – Girish