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 = $foo OR $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 OR true; var_dump( $wat ); // WAT? bool(false)
Output for git.master, git.master_jit, rfc.property-hooks
1st true 2nd true F | bar foo | bar bool(true) bool(false)

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