3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = 'yo'; for( $i = 0; $i <= 3; $i++ ) { echo "substr( '$x', $i ) is: ", var_export(substr( $x, $i ),true), "\n"; } echo "\n\n"; $x = ''; echo "substr( '$x', 0 ) is: ", var_export(substr( $x, 0 ),true), "\n"; echo "substr( '$x', 1 ) is: ", var_export(substr( $x, 1 ),true), "\n";
Output for git.master, git.master_jit, rfc.property-hooks
substr( 'yo', 0 ) is: 'yo' substr( 'yo', 1 ) is: 'o' substr( 'yo', 2 ) is: '' substr( 'yo', 3 ) is: '' substr( '', 0 ) is: '' substr( '', 1 ) is: ''

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