2020-04-23 17:30:56 个人常用封装函数
个人常用函数
function convertToCamel($name) { return lcfirst(str_replace(' ', '', ucwords(str_replace('_', ' ', $name)))); }
function convertToCamel($name)
{
return lcfirst(str_replace(' ', '', ucwords(str_replace('_', ' ', $name))));
}