php 下划线字符串与驼峰字符串转换

 转载自  https://blog.csdn.net/tudanlaibanzhuan/article/details/78931755

方法一(较好):

//下划线转驼峰
//思路:
//step1.原字符串转小写,原字符串中的分隔符用空格替换,在字符串开头加上分隔符
//step2.将字符串中每个单词的首字母转换为大写,再去空格,去字符串首部附加的分隔符.
function camelize($uncamelized_words,$separator='_')
    {
        $uncamelized_words = $separator. str_replace($separator, " ", strtolower($uncamelized_words));
        return ltrim(str_replace(" ", "", ucwords($uncamelized_words)), $separator );
    }

 

//驼峰命名转下划线命名
//思路:
//小写和大写紧挨一起的地方,加上分隔符,然后全部转小写
 function uncamelize($camelCaps,$separator='_')
    {
        return strtolower(preg_replace('/([a-z])([A-Z])/', "$1" . $separator . "$2", $camelCaps));
    }

方法二

//驼峰命名转下划线命名
function toUnderScore($str)
    {
        $dstr = preg_replace_callback('/([A-Z]+)/',function($matchs)
        {
            return '_'.strtolower($matchs[0]);
        },$str);
        return trim(preg_replace('/_{2,}/','_',$dstr),'_');
    }

 

//下划线命名到驼峰命名
 function toCamelCase($str)
    {
        $array = explode('_', $str);
        $result = $array[0];
        $len=count($array);
        if($len>1)
        {
            for($i=1;$i<$len;$i++)
            {
                $result.= ucfirst($array[$i]);
            }
        }
        return $result;
    }
    }

 

你可能感兴趣的:(php,php)