php 正则替换

 

复制代码
// 驼峰写法
function toUp ($str) {
    return preg_replace_callback('/\s(\w)|-(\w)/', function ($matches) {
        if (count($matches) > 2) {
            return strtoupper($matches[2]);
        }
        return strtoupper($matches[1]);
    }, $str);
}
复制代码

 

posted @   贝尔塔猫  阅读(138)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示