我想在这里添加一些价值:
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
对象数组。