dsfs587465 2011-02-02 07:32
浏览 25
已采纳

在CakePHP中合并2个数组

I have two arrays array1 and array2. I want to merge these two arrays into one and show the values of merged array in a dropdown. I want the values in a way that the value of first array - value of 2nd array.

e.g:

$employeePlaces1 = array(1, 2, 4,9);
$employeePlaces2 = array(3, 5, 6,7);

I want in dropdown the value as $employeePlaces1[0]-$employeePlaces2[1], $employeePlaces1[0]-$employeePlaces2[1].

    1-3,
    2-5,
    4-6, 
    9-7.

How can I do this ?

  • 写回答

5条回答 默认 最新

  • dongmu3457 2011-02-02 10:24
    关注
    $employee1 = array(1, 2, 4, 9);
    $employee2 = array(3, 5, 6, 7);
    
    function doMerge($n, $m) {
        return $n.'-'.$m;
    }
    
    
    $c = array_map("doMerge", $employee1, $employee2);
    
    print_r($c);
    

    Or in PHP 5.3 syntax with lambda style functions:

    $c = array_map(function($n, $m) {return $n.'-'.$m;}, $employee1, $employee2);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动