$arr_1 = {'one', 'two'};
$arr_2 = {'3', '4'};
$arr_3 = array();
//1
$arr_3 = $arr_2 + $arr_1;
//2
$arr_3 = array_merge($arr_2, $arr_1);
'IT > PHP' 카테고리의 다른 글
코드이그나이터4 view에서 Controller 전송 - CodeIgniter4 veiw post Routes (0) | 2020.08.06 |
---|---|
PHP Blocked a frame with origin "https://" from accessing a cross-origin frame. Error(오류) (0) | 2020.05.19 |
PHP Excel row, col count 행 열 갯수 (0) | 2020.05.19 |