3v4l.org

run code in 300+ PHP versions simultaneously
<?php $palette = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']; $count = count($palette); echo preg_replace_callback( '~\PZ~u', function ($m) use($palette, $count) { static $i = 0; return sprintf('<span style="color:%s">%s</span>', $palette[$i++ % $count], $m[0]); }, 'Stack Overflow volunteerism' );

preferences:
50.62 ms | 1565 KiB | 5 Q