题目:实现每个单词首字母大写
方式一
$str = 'hello_world'; $str = str_replace('_', ' ', $str); $str = ucwords($str); $str = str_replace(' ', '_', $str); echo $str; // Hello_World
方式二
$strs = explode('_', $str); $list = []; foreach ($strs as $key=>$s) { $list[$key]=ucfirst($s); } $str = implode('_', $list); echo $str; // Hello_World
方式一使用内置函数就实现了,优先考虑第