3v4l.org

run code in 300+ PHP versions simultaneously
<?php for ( $i=0; $i<10; $i++ ) { echo "Loop start $i\n"; if ( $i > 5 ) { // break; goto after_the_break; } echo "Loop body $i\n"; } echo "No break was executed\n"; after_the_break: echo "Rest of program...\n";
Output for git.master, git.master_jit, rfc.property-hooks
Loop start 0 Loop body 0 Loop start 1 Loop body 1 Loop start 2 Loop body 2 Loop start 3 Loop body 3 Loop start 4 Loop body 4 Loop start 5 Loop body 5 Loop start 6 Rest of program...

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