3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test_case($a, $b, $c) { // Without Parenthesis if ($a || $b && $c) { $test1 = TRUE; } else { $test1 = FALSE; } // With Parenthesis if (($a || $b) && $c) { $test2 = TRUE; } else { $test2 = FALSE; } // Compare result if ($test1 !== $test2) { printf( 'Condition (%s || %s && %s) does NOT match ((%s || %s) && %s) --- Should have been "%s" but was actually "%s"'.PHP_EOL, strtoupper(var_export($a, TRUE)), strtoupper(var_export($b, TRUE)), strtoupper(var_export($c, TRUE)), strtoupper(var_export($a, TRUE)), strtoupper(var_export($b, TRUE)), strtoupper(var_export($c, TRUE)), strtoupper(var_export($test2, TRUE)), strtoupper(var_export($test1, TRUE)) ); } else { printf( 'Condition (%s || %s && %s) works as intended'.PHP_EOL, strtoupper(var_export($a, TRUE)), strtoupper(var_export($b, TRUE)), strtoupper(var_export($c, TRUE)) ); } } // Test all possible variations test_case(TRUE, TRUE, TRUE); test_case(TRUE, TRUE, FALSE); test_case(TRUE, FALSE, TRUE); test_case(TRUE, FALSE, FALSE); test_case(FALSE, TRUE, TRUE); test_case(FALSE, TRUE, FALSE); test_case(FALSE, FALSE, TRUE); test_case(FALSE, FALSE, FALSE);
Output for git.master, git.master_jit, rfc.property-hooks
Condition (TRUE || TRUE && TRUE) works as intended Condition (TRUE || TRUE && FALSE) does NOT match ((TRUE || TRUE) && FALSE) --- Should have been "FALSE" but was actually "TRUE" Condition (TRUE || FALSE && TRUE) works as intended Condition (TRUE || FALSE && FALSE) does NOT match ((TRUE || FALSE) && FALSE) --- Should have been "FALSE" but was actually "TRUE" Condition (FALSE || TRUE && TRUE) works as intended Condition (FALSE || TRUE && FALSE) works as intended Condition (FALSE || FALSE && TRUE) works as intended Condition (FALSE || FALSE && FALSE) works as intended

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
34.79 ms | 407 KiB | 5 Q