function strToUcword($str){
$arr = explode('_',$str);
$restr = '';
foreach ($arr as $key=>$value){
// $restr .= ucwords($value);
$restr .= ucfirst($value);
}
var_dump($restr);
}
strToUcword('make_by_id');
function demo($str)
{
print_r(str_replace(' ','',ucwords(str_replace('_',' ',$str)))) ;
}
demo('make_by_id');