下划线转驼峰

少于 1 分钟读完

$DB='user_name'; $Tp=str_replace('_',' ',$DB); $Tp=ucwords($Tp); $Tp=str_replace(' ','',$Tp); return $Tp;