최상의 답변
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 함수를 사용할 수도 있습니다. 예를 들어 하나 이상의 요소를 배열 끝에 푸시하려면
array\_push($test\_array, ‘new element’, 123, "you can add one or more element using comma");
하나 이상의 새 요소를 처음에 추가하려면 배열의
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";
완료!