PHP Convert Snake Case to Camel Case with PHP | Laravel Inspired
ke case to camel case, Laravel, string conversion, coding, programming
<?php
function toCamelCase($value)
{
$value = str_replace(['-', '_'], ' ', $value);
$value = ucwords($value);
$value = str_replace(' ', '', $value);
return lcfirst($value);
}