dqhgjay5753 2016-06-20 10:54
浏览 178
已采纳

为对象PHP中的数组添加值

I have this object:

$myobject = (object) [  
    'name' => [],
    'value' => [],
    'id' => [],
];

I want to add some values in a for each loop, but array push does not seem to work.

I've tried this:

$object_name = $myobject->name;
array_push($object_name, "testName");

I've looked everywhere but can't seem to find the answer.

  • 写回答

3条回答 默认 最新

  • dongqiang1894 2016-06-20 11:08
    关注

    You cann't use array_push this way. $object_name is not your main object.

    When you push to $object_name, your $myobject is still empty.

    You can fix it adding reference &, for example:

    $object_name = &$myobject->name;
    

    or just push to your original object:

    array_push($myobject->name, "testName");
    

    or

    $myobject->name[] = "something";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?