3v4l.org

run code in 300+ PHP versions simultaneously
<?php for ( $i=0; $i<10; $i++ ) { echo "Loop start $i\n"; if ( $i % 2 == 0 ) { // continue; goto continue_only_block; } echo "Loop body $i\n"; if ( false ) { continue_only_block: echo "Continue block $i\n"; } }
Output for git.master, git.master_jit, rfc.property-hooks
Loop start 0 Continue block 0 Loop start 1 Loop body 1 Loop start 2 Continue block 2 Loop start 3 Loop body 3 Loop start 4 Continue block 4 Loop start 5 Loop body 5 Loop start 6 Continue block 6 Loop start 7 Loop body 7 Loop start 8 Continue block 8 Loop start 9 Loop body 9

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:
48.29 ms | 402 KiB | 8 Q