3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text = 'write {Hello, World!} in either the color {blue} or {red} or {#00AA00} and in either the font {Arial Black} or {Monaco} where both the color and the font are determined randomly'; echo "<ol>" , preg_replace_callback('~{([^}]*)}|(\S+)~', function($m) { if (!isset($m[2])) { return "<li><strong>{$m[1]}</strong></li>\n"; } return "<li>{$m[2]}</li>\n"; }, $text) , "<ol>";
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
<ol><li>write</li> <li><strong>Hello, World!</strong></li> <li>in</li> <li>either</li> <li>the</li> <li>color</li> <li><strong>blue</strong></li> <li>or</li> <li><strong>red</strong></li> <li>or</li> <li><strong>#00AA00</strong></li> <li>and</li> <li>in</li> <li>either</li> <li>the</li> <li>font</li> <li><strong>Arial Black</strong></li> <li>or</li> <li><strong>Monaco</strong></li> <li>where</li> <li>both</li> <li>the</li> <li>color</li> <li>and</li> <li>the</li> <li>font</li> <li>are</li> <li>determined</li> <li>randomly</li> <ol>

preferences:
120.63 ms | 410 KiB | 5 Q