3v4l.org

run code in 300+ PHP versions simultaneously
<?php function titleCase($string) { $len=strlen($string); $i=0; $last= ""; $new= ""; $string=strtoupper($string); while ($i<$len): $char=substr($string,$i,1); if (ereg( "[A-Z]",$last)): $new.=strtolower($char); else: $new.=strtoupper($char); endif; $last=$char; $i++; endwhile; return($new); }; echo titleCase("hello there, world!"); ?>

preferences:
36.83 ms | 402 KiB | 5 Q