函数从给定数组的数量打印所有组合

时间:2018-08-08 20:53:03

标签: php

the list of all combination is what i wanna print

你们能帮我吗,我得到了数组个数(最多五种数组),我想使用每个数组元素打印所有组合,这必须是唯一的例子:数组1元素可以不能与数组1的元素组合,只能与数组n + 1的数组元素组合。

    $array1 = array('a1', 'a2');
    $array2 = array('b1', 'b2','b3');
    $array3 = array('c1', 'c2','c3');




    //combine those array into this array
    $combinationlist = array(
        array('a1', 'b1', 'c1'),
        array('a1', 'b1', 'c2')
        //and so on just like the spreadsheets
    );

0 个答案:

没有答案