3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = '^4Hello World ^5Foo^8Bar'; $colorMap = array( '000000', // 0 'ff0000', // 1 '00ff00', // 2 'ffff00', // 3 '0000ff', // 4 '00ffff', // 5 'ff00ff', // 6 'ffffff', // 7 'CC9933', // 8 '8D8D8D', // 9 ); $parts = preg_split('/\^(\d)/', $str, -1, PREG_SPLIT_NO_EMPTY + PREG_SPLIT_DELIM_CAPTURE); $result = ''; foreach($parts as $idx => $part) if((($idx % 2) === 0) && isset($colorMap[(int)$part])) $result .= sprintf('<span style="color:#%s">%s</span>', $colorMap[(int)$part], $parts[$idx + 1]); print $result;
Output for git.master, git.master_jit, rfc.property-hooks
<span style="color:#0000ff">Hello World </span><span style="color:#00ffff">Foo</span><span style="color:#CC9933">Bar</span>

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