“Adicionar objeto na matriz php” Respostas de código

PHP Appender à matriz

$myArr = [1, 2, 3, 4];

array_push($myArr, 5, 8);
print_r($myArr); // [1, 2, 3, 4, 5, 8]

$myArr[] = -1;
print_r($myArr); // [1, 2, 3, 4, 5, 8, -1]
Allen

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

Respostas semelhantes a “Adicionar objeto na matriz php”

Perguntas semelhantes a “Adicionar objeto na matriz php”

Mais respostas relacionadas para “Adicionar objeto na matriz php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código