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 "wat = T|F\n"; $wat = $foo || $bar; echo $wat ."\n"; // WAT? doesn't print? if( false OR $bar ) echo "F | bar\n"; // OK if( $foo OR $bar ) echo "foo | bar\n"; // OK if( $wat ) echo "wat = F|T\n"; // WAT? doesn't print? var_dump( false OR true ); // OK: bool(true) $wat = false || true; var_dump( $wat ); // WAT? bool(false)
Output for git.master, git.master_jit, rfc.property-hooks
1st true 2nd true 1 wat = T|F 1 F | bar foo | bar wat = F|T bool(true) bool(true)

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