I would like to know if there is any native function of PHP to relate all the items of arrays with all the items of other arrays, for example:
$arr['a'] = [1,2,3];
$arr['b'] = [4,5];
$arr['c'] = [7,8,9,10];
To get the following result:
$r...
asked by
30.10.2017 / 19:27