3v4l.org

run code in 300+ PHP versions simultaneously
<?php function snakeToCamel($text, $firstUpper = true) { $regex = '/('; if ($firstUpper) { $regex .= '^|'; } $regex .= '_)([a-z])/e'; return preg_replace($regex, "strtoupper('\\2')", $text); } echo snakeToCamel('testFooBar');

preferences:
56.56 ms | 402 KiB | 5 Q