附加價值我想在這裏補充一些值:如何在多維數組在PHP
Array
(
[0] => stdClass Object
(
[id] => 1
[cat_id] => 1
[lot_id] => 1
[brand] => Dell
[model] => D630
[unit_aed] => 800
[sold] => 0
** i want to append value here like this
[username] => name
)
[2] => stdClass Object
(
[id] => 4
[cat_id] => 0
[lot_id] => 0
[brand] => dell
[model] => e6400
[unit_aed] => 0
[sold] => 0
)
)
怎麼可能呢?我正在嘗試array_push($array, 'username')
。
它可以用簡單的數組正常工作,但不適用於stdClass
對象數組。
Object!= array –