Najlepsza odpowiedź
W php możesz dodawać elementy do pustej tablicy na różne sposoby. Na przykład. Sprawdź poniższy kod.
/ / 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
możesz także użyć funkcji array\_push i array\_unshift, aby dodać elementy do tablicy. Na przykład, aby umieścić jeden lub więcej elementów na końcu tablicy
array\_push($test\_array, ‘new element’, 123, "you can add one or more element using comma");
Aby dodać jeden lub więcej nowych elementów na początku tablicy,
array\_unshift($test\_array, "value one", "value 2 and so on");
Do dodawania wartości do tablicy asocjacyjnej.
$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
)
Możesz także użyć array\_merge, aby dodać nową wartość do starej tablicy. Nie zamierzam długo rozwiązywać tej odpowiedzi.
Tablica powinna znaleźć się w dokumencie php.
PHP : Funkcje tablicowe – podręcznik
oraz możesz bezpłatnie zapoznać się z najnowszymi wersjami php. PHP: właściwy sposób
Mam nadzieję, że masz swoją odpowiedź.
Odpowiedź
Dotyczy to tablic indeksowanych:
//declare an array
$myArray = array();
//add value to the array
$myArray[] = "value";
Dla tablic asocjacyjnych:
$myArray = array();
$myArray ["key"] = "value";
Gotowe!