// 驼峰写法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);}
本文共 289 字,大约阅读时间需要 1 分钟。
// 驼峰写法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);}
转载于:https://www.cnblogs.com/CyLee/p/8945147.html