3v4l.org

run code in 300+ PHP versions simultaneously
<?php function dashesToCamelCase($string, $capitalizeFirstCharacter = false) { $str = str_replace(' ', '', ucwords(str_replace('-', ' ', $string))); if (!$capitalizeFirstCharacter) { $str[0] = strtolower($str[0]); } return $str; } echo dashesToCamelCase('this-is-a-string');

preferences:
41.5 ms | 402 KiB | 5 Q