3v4l.org

run code in 300+ PHP versions simultaneously
<?php $var = 'ABCDEFGH:/MNRPQR/'; echo "Original: $var<hr />\n"; /* These two examples replace all of $var with 'bob'. */ echo substr_replace($var, 'bob', 0) . "<br />\n"; echo substr_replace($var, 'bob', 0, strlen($var)) . "<br />\n"; /* Insert 'bob' right at the beginning of $var. */ echo substr_replace($var, 'bob', 0, 0) . "<br />\n"; /* These next two replace 'MNRPQR' in $var with 'bob'. */ echo substr_replace($var, 'bob', 10, -1) . "<br />\n"; echo substr_replace($var, 'bob', -7, -1) . "<br />\n"; /* Delete 'MNRPQR' from $var. */ echo substr_replace($var, '*', 10, -1) . "<br />\n";
Output for git.master, git.master_jit, rfc.property-hooks
Original: ABCDEFGH:/MNRPQR/<hr /> bob<br /> bob<br /> bobABCDEFGH:/MNRPQR/<br /> ABCDEFGH:/bob/<br /> ABCDEFGH:/bob/<br /> ABCDEFGH:/*/<br />

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