<?php $selection = []; foreach ([true, false] as $a) { foreach ([true, false] as $b) { $iteration = ''; $iteration .= ($a ? 'true' : 'false'); $iteration .= '-'; $iteration .= ($b ? 'true' : 'false'); $selection[$iteration] = 'nothing'; $selection[$iteration] = $a ? 'first' : ($b ? 'second' : 'third'); } } print_r($selection); $selection = []; foreach ([true, false] as $a) { foreach ([true, false] as $b) { $iteration = ''; $iteration .= ($a ? 'true' : 'false'); $iteration .= '-'; $iteration .= ($b ? 'true' : 'false'); $selection[$iteration] = 'nothing'; $selection[$iteration] = $a ? 'first' : $b ? 'second' : 'third'; } } print_r($selection);
You have javascript disabled. You will not be able to edit any code.
There are `0` results