Nejlepší odpověď
Můžete přidat prvky do prázdného pole různými způsoby v php. Například. Zkontrolujte následující kód.
/ / 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
Můžete také použít funkce array\_push a array\_unshift k přidání prvků do pole. Například posunout jeden nebo více prvků na konec pole
array\_push($test\_array, ‘new element’, 123, "you can add one or more element using comma");
Chcete-li na začátek přidat jeden nebo více nových prvků pole,
array\_unshift($test\_array, "value one", "value 2 and so on");
Pro přidání hodnoty do asociativního pole.
$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
)
můžete také použít array\_merge k přidání nové hodnoty do starého pole. Nebudu tuto odpověď dělat příliš dlouho.
Měli byste se podívat do php doc pro pole.
PHP : Array Functions – Manual
a Můžete se také zdarma naučit nejnovější php zde. PHP: Správná cesta
Doufám, že jste dostali svou odpověď.
Odpověď
Toto je pro indexovaná pole:
//declare an array
$myArray = array();
//add value to the array
$myArray[] = "value";
Pro asociativní pole:
$myArray = array();
$myArray ["key"] = "value";
Hotovo!