3v4l.org

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

preferences:
45.69 ms | 402 KiB | 5 Q