时间:2021-07-01 10:21:17 帮助过:4人阅读
<?php $array1 = array( 0 => 'zero_a' , 2 => 'two_a' , 3 => 'three_a' ); $array2 = array( 1 => 'one_b' , 3 => 'three_b' , 4 => 'four_b' ); $result = $array1 + $array2 ; var_dump ( $result ); ?>
相关推荐:
php合并数组函数array_merge()
以上就是PHP合并两个一维数组的详细内容,更多请关注Gxl网其它相关文章!