Log all pairs of array

Run Settings
LanguagePHP
Language Version
Run Command
<?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);
Editor Settings
Theme
Key bindings
Full width
Lines