Migliore risposta
Puoi aggiungere elementi a un array vuoto in diversi modi in php. Per esempio. Controlla il codice seguente.
/ / 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
puoi anche usare le funzioni array\_push e array\_unshift per aggiungere elementi allarray. Ad esempio, per inserire uno o più elementi alla fine di un array
array\_push($test\_array, ‘new element’, 123, "you can add one or more element using comma");
Per aggiungere uno o più nuovi elementi allinizio dellarray,
array\_unshift($test\_array, "value one", "value 2 and so on");
per aggiungere valore a un array associativo.
$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
)
puoi anche utilizzare array\_merge per aggiungere un nuovo valore al vecchio array. Non renderò questa risposta molto lunga.
Dovresti dare unocchiata al documento php per array.
PHP : Array Functions – Manual
e puoi anche imparare lultima versione di php gratuitamente qui. PHP: il modo giusto
Spero che tu abbia la tua risposta.
Risposta
Questo è per gli array indicizzati:
//declare an array
$myArray = array();
//add value to the array
$myArray[] = "value";
Per array associativi:
$myArray = array();
$myArray ["key"] = "value";
Fatto!