Melhor resposta
Você pode adicionar elementos a uma matriz vazia de diferentes maneiras em php. Por exemplo. Verifique o seguinte código.
/ / lets first create an empty array. we will use it in the rest of the example
$test\_array = array();
//for numerically indexed array, you can add element like this.
$test\_array[] = ‘new element’; // string value
$test\_array[] = 123; // integer value
você também pode usar as funções array\_push e array\_unshift para adicionar elementos ao array. Por exemplo, para inserir um ou mais elementos no final da matriz
array\_push($test\_array, ‘new element’, 123, "you can add one or more element using comma");
Para adicionar um ou mais novos elementos ao início da matriz,
array\_unshift($test\_array, "value one", "value 2 and so on");
Para adicionar valor a uma matriz associativa.
$test\_array["key\_of\_your\_array"] = "value of the array";
// or you can use this way if your value is an associative array
$another\_array = array("my\_array\_key" => "My array value", "another\_key" => "another value");
$result = $test\_array + $another\_array;
// lets print the result
print\_r($result);
// you should see the result something like the below
Array
(
[my\_array\_key] => My array value
[another\_key] => another value
)
você também pode usar array\_merge para adicionar um novo valor ao antigo array. Não vou deixar essa resposta muito longa.
Você deve dar uma olhada no documento php para array.
PHP : Array Functions – Manual
e você também pode aprender o último php gratuitamente aqui. PHP: o jeito certo
Espero que você tenha sua resposta.
Resposta
Isso é para matrizes indexadas:
//declare an array
$myArray = array();
//add value to the array
$myArray[] = "value";
Para matrizes associativas:
$myArray = array();
$myArray ["key"] = "value";
Feito!