我在php中有一个数组如下: -
$arrEquip = array("None", "Bandolier", "Canteen", "Satchel");
我想输出的内容如下: -
None
Bandolier
Bandolier; Canteen
Bandolier; Canteen; Satchel
Canteen
Canteen; Satchel
Satchel
基本上每个数组元素都需要在其后列出所有其他数组元素。
我认为创建一个关联的多维数组会起作用。执行foreach循环,创建初始键,然后再次为单个数组运行值。但我不知道如何将它们组合在一起。
单个数组中可以包含任意数量的元素。
编辑:抱歉,忘记了php代码$arrEquip = array("None", "Bandolier", "Canteen", "Satchel");
$rowCount = count($arrEquip);
$keyVal = "";
$i = 0;
foreach ($arrEquip as $key) {
$keyVal = "";
if (strtoupper($key) !== "NONE") {
for ($y = ($i + 1); $y < $rowCount; $y++) {
$keyVal = $keyVal . $arrEquip[$y] . "; ";
}
}
$arrOutput[$key] = $keyVal;
$i++;
}
输出是: -
Array
(
[None] =>
[Bandolier] => Canteen; Satchel;
[Canteen] => Satchel;
[Satchel] =>
)
EDIT2:刚刚意识到我想要的输出是错误的。应该是: -
Array
(
[0] => None
[1] => Bandolier
[2] => Bandolier; Canteen
[3] => Bandolier; Canteen; Satchel
[4] => Bandolier; Satchel
[5] => Canteen
[6] => Canteen; Satchel
[7] => Satchel
)
很抱歉混淆了。
答案 0 :(得分:0)
如您在示例中所建议的那样,简单地将一个空数组设置为0到7长度,并使用array_combine函数将当前数组与新索引数组合并。
答案 1 :(得分:0)
一个完美的解决方案(你必须以适当的方式重新索引数组): -
<?php
$test = array("None", "Bandolier", "Canteen", "Satchel");
$return = uniqueCombination($test);
//echo "<pre>";print_r($return);
//Sort
sort($return);
//Pretty Print
$final_arr = array_map(function($v){ return implode("; ", $v); }, $return);
foreach ($final_arr as $key=>$val){
if(strpos($val,$test[0].'; ') === 0){
unset($final_arr[$key]);
}
}
echo "<pre/>";print_r(array_values($final_arr));
function uniqueCombination($in, $minLength = 1, $max = 2000) {
$count = count($in);
$members = pow(2, $count);
$return = array();
for($i = 0; $i < $members; $i ++) {
$b = sprintf("%0" . $count . "b", $i);
$out = array();
for($j = 0; $j < $count; $j ++) {
$b{$j} == '1' and $out[] = $in[$j];
}
count($out) >= $minLength && count($out) <= $max and $return[] = $out;
}
return $return;
}
?>
输出: - https://eval.in/708900