“Array -Push -Objekt PHP” Code-Antworten

Array -Push -Objekt PHP

$myArray = [];

array_push($myArray, (object)[
        'key1' => 'someValue',
        'key2' => 'someValue2',
        'key3' => 'someValue3',
]);

return $myArray;
Tough Thrush

Objekt in Array PHP hinzufügen

$myArray = array("name" => "my name");
echo json_encode($myArray);
Dropout Programmer

PHP -Array -Druck

If you're going to use array_push() to insert a "$key" => "$value" pair into an array, it can be done using the following:

    $data[$key] = $value;

It is not necessary to use array_push.
Fine Fox

Ähnliche Antworten wie “Array -Push -Objekt PHP”

Fragen ähnlich wie “Array -Push -Objekt PHP”

Weitere verwandte Antworten zu “Array -Push -Objekt PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen