Log all pairs of array
<?php
define("Constant" , $boxes=['a','b','c','d','e']);
function LogPairs($boxes){
for ( $i = 0; $i<sizeof($boxes); ++$i){
for($j = 0; $j <sizeof($boxes); ++$j){
echo $boxes[$j];
echo"\t";
echo $boxes[$i];
echo"\n";
}
}
}
LogPairs($boxes);INFO