欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

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;
    }

					
相关标签: php