php 按列值合并数据,php合并数据
程序员文章站
2022-05-23 10:53:04
...
php 按列值合并数据,php合并数据
/* * PHP按值合并数组 * */ function my_array_merge(&$array1, &$array2) { $result = Array(); foreach($array1 as $key => &$value) { $result[$key] = array_merge($value, $array2[$key]); } return $result; }