3v4l.org

run code in 300+ PHP versions simultaneously
<?php if( true OR false ) echo "1st true\n"; // OK if( false OR true ) echo "2nd true\n"; // OK $bar = true; $foo = false; $wat = $bar OR $foo; echo $wat ."\n"; // OK: 1 if( $wat ) echo "T | F\n"; $wat = $foo OR $bar; echo $wat ."\n"; // WAT? doesn't print? if( false OR $bar ) echo "F | T\n"; // OK if( $foo OR $bar ) echo "F | T\n"; // OK if( $wat ) echo "F | T\n"; // WAT? doesn't print?
Output for git.master, git.master_jit, rfc.property-hooks
1st true 2nd true 1 T | F F | T F | T

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:
38.97 ms | 401 KiB | 8 Q