3v4l.org

run code in 300+ PHP versions simultaneously
<?php $alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; $offset = 1; $limit = 6; $start = max(0, $offset-$limit); $end = min(strlen($alpha)-1, $offset+$limit); Echo substr($alpha, $start, $end-$start+1); /* To output them one by one as in an array you can use this: $result = substr($alpha, $start, $end-$start+1); For($i=0; $i<strlen($result); $i++){ Echo $result[$i] . "\n"; } Or you can explode("", $result); to make it a true array */
Output for git.master_jit, git.master, rfc.property-hooks
ABCDEFGH

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:
104.92 ms | 405 KiB | 5 Q