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_block; } echo "Loop body $i\n"; continue_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 Continue block 1 Loop start 2 Continue block 2 Loop start 3 Loop body 3 Continue block 3 Loop start 4 Continue block 4 Loop start 5 Loop body 5 Continue block 5 Loop start 6 Continue block 6 Loop start 7 Loop body 7 Continue block 7 Loop start 8 Continue block 8 Loop start 9 Loop body 9 Continue block 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:
56.53 ms | 406 KiB | 5 Q