3v4l.org

run code in 300+ PHP versions simultaneously
<?php function to_camel_case($str) { return preg_replace_callback('/_([a-z])/', function($match) { return strtoupper($match[1]); }, $str); } echo to_camel_case('rob_tr_yuui');

preferences:
36.64 ms | 402 KiB | 5 Q