“Array push objeto php” Respostas de código

Array push objeto php

$myArray = [];

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

return $myArray;
Tough Thrush

Adicionar objeto na matriz php

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

push da matriz php

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

Respostas semelhantes a “Array push objeto php”

Perguntas semelhantes a “Array push objeto php”

Mais respostas relacionadas para “Array push objeto php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código