ベストアンサー
PHPではさまざまな方法で要素を空の配列に追加できます。例えば。次のコードを確認してください。
/ / 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
array\_push関数とarray\_unshift関数を使用して、配列に要素を追加することもできます。たとえば、1つ以上の要素を配列の最後にプッシュするには
array\_push($test\_array, ‘new element’, 123, "you can add one or more element using comma");
1つ以上の新しい要素を最初に追加するには配列の
array\_unshift($test\_array, "value one", "value 2 and so on");
連想配列に値を追加するため。
$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
)
array\_mergeを使用して、古い配列に新しい値を追加することもできます。この答えをあまり長くするつもりはありません。
配列のphpドキュメントを確認する必要があります。
そして最新のphpもここで無料で学ぶことができます。 PHP:正しい方法
回答が得られたと思います。
回答
これはインデックス付き配列用です:
//declare an array
$myArray = array();
//add value to the array
$myArray[] = "value";
連想配列の場合:
$myArray = array();
$myArray ["key"] = "value";
完了!