Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
648 views
in Technique[技术] by (71.8m points)

Pushing into a 2 dimensional array in 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);
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If new element has a defined key:

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

Without any defined key:

$people[] = 'newvalue';

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...