Bedste svar
Du kan føje elementer til et tomt array på forskellige måder i php. For eksempel. Tjek følgende kode.
/ / 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
Du kan også bruge array\_push og array\_unshift-funktioner til at tilføje elementer til arrayet. For eksempel at skubbe et eller flere elementer på slutningen af arrayet
array\_push($test\_array, ‘new element’, 123, "you can add one or more element using comma");
For at tilføje et eller flere nye elementer til begyndelsen af arrayet,
array\_unshift($test\_array, "value one", "value 2 and so on");
For at tilføje værdi til et associerende array.
$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
)
kan du også bruge array\_merge til at tilføje ny værdi til det gamle array. Jeg vil ikke gøre dette svar meget længe.
Du bør kigge i php-dokumentet for array.
PHP : Array-funktioner – Manual
og du kan også lære den nyeste php gratis her. PHP: Den rigtige vej
Jeg håber, du har fået dit svar.
Svar
Dette er for indekserede arrays:
//declare an array
$myArray = array();
//add value to the array
$myArray[] = "value";
For associerende arrays:
$myArray = array();
$myArray ["key"] = "value";
Udført!