例子
"This is an example!" ==> "sihT si na !elpmaxe"
"double spaces" ==> "elbuod secaps"
代码
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文章来源:https://www.toymoban.com/news/detail-734039.html
strrev: 反转字符串,即abc -> cba文章来源地址https://www.toymoban.com/news/detail-734039.html
到了这里,关于PHP反转字符串中的每个单词的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!