dongque1646 2016-03-29 10:19
浏览 9

在php中推入二维数组

If i have an array with 2 dynamic values like this :

 $people = array(
    "george" => "smith"
);

How can i push into that in php?

I have tried

array_push($people, "john" => "smith");

EDIT :

I have tried what has been commented but adding a new key doesnt create a new entry in the array, there is only 1 value although there should be 3..

 $people = array();

foreach ($items as $item){

    $name = $item->getElementsByTagName('name')->item(0);
    $num = $item->getElementsByTagName('number')->item(0);
    $mess = $item->getElementsByTagName('message')->item(0);

    if($name != NULL && $num != NULL && $mess != NULL){
        $people[$num->textContent] = $name->textContent;

    }

}
 var_dump($people);
  • 写回答

4条回答 默认 最新

  • douxin20081125 2016-03-29 10:23
    关注

    If new element has a defined key:

    $people['newkey'] = 'newvalue';
    

    Without any defined key:

    $people[] = 'newvalue';
    
    评论

报告相同问题?