3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = '^4Hello World ^5Foo^8Bar'; $colorMap = array( '000000', // 0 'ff0000', // 1 '00ff00', // 2 '00ff00', // 3 '00ff00', // 4 '00ff00', // 5 '00ff00', // 6 '00ff00', // 7 '00ff00', // 8 ); $parts = preg_split('/\^(\d)/', $str, -1, PREG_SPLIT_NO_EMPTY + PREG_SPLIT_DELIM_CAPTURE); $result = ''; r($parts); 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
Fatal error: Uncaught Error: Call to undefined function r() in /in/9GHEd:20 Stack trace: #0 {main} thrown in /in/9GHEd on line 20
Process exited with code 255.

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