我有对象数组,我想做的是将 123, 150, 50 之类的索引重置为 0,1,2 。我已经完成了 array_values(); 但它删除了第一个数组“123”。
如何使索引号从 0 开始。使 123, 150, 50, 变成 0,1,2
array(
123 =>
User::__set_state(array(
_type' => 'student',
'id' =>'23'}),
150=>
User::__set_state(array(
'_type' => 'student',
'id' =>'29'}),
50=>
User::__set_state(array(
'_type' => 'student',
'id' =>'12'})
输出
array(
150=>
User::__set_state(array(
'_type' => 'student',
'id' =>'29'}),
50=>
User::__set_state(array(
'_type' => 'student',
'id' =>'12'})