Temelde tercüman yüzden, soldan sağa bu ifadeyi değerlendirir:
echo $test == 'one' ? 'one' : $test == 'two' ? 'two' : 'three';
yorumlanır
echo ($test == 'one' ? 'one' : $test == 'two') ? 'two' : 'three';
And the expression in paratheses evaluates to true, since both 'one' and 'two' are not null/o/other form of false.
So if it would look like:
echo $test == 'one' ? FALSE : $test == 'two' ? 'two' : 'three';
Bu üç basacaktır. Tamam iş yapmak için, üçlü operatörler birleştirerek unutun, ve daha karmaşık mantık için düzenli IFS / anahtarını kullanın, ya da en azından mantığını anlamak için tercüman, parantez kullanın ve standart LTR şekilde kontrol yapmak gerekir:
echo $test == 'one' ? 'one' : ($test == 'two' ? 'two' : ($test == 'three' ? 'three' : 'four'));
//etc... It's not the most understandable code...
//You better use:
if($test == 'one')
echo 'one';
else { //or elseif()
...
}
//Or:
switch($test) {
case 'one':
echo 'one';
break;
case 'two':
echo 'two';
break;
//and so on...
}