例子
"This is an example!" ==> "sihT si na !elpmaxe"
"double spaces" ==> "elbuod secaps"
代码
php
function reverseWords($str) {
// Go for it
$str_new = explode(' ',$str);
$str_new = array_map("strrev",$str_new);
$new_str = implode(' ',$str_new);
return $new_str;
}
解析
explode: 用空格拆分字符串为一个数组
array_map: 对数组中的每个键值执行回调方法,这里是strrev
strrev: 反转字符串,即abc -> cba