本文实例讲述了php字符串按照单词进行反转的方法。分享给大家供大家参考。具体分析如下:
下面的php代码可以将字符串按照单词进行反转输出,实际上市现将字符串按照空格分隔到数组,然后对数组进行反转输出
<?php
$s = "Reversing a string by word";
// break the string up into words
$words = explode(' ',$s);
// reverse the array of words
$words = array_reverse($words);
// rebuild the string
$s = implode(' ',$words);
print $s;
?>
输出结果如下:
word by string a Reversing
希望本文所述对大家的php程序设计有所帮助。
您可能感兴趣的文章:php实现字符串翻转的方法利用perl、python、php、shell、sed、awk、c 实现字符串的翻转php中实现字符串翻转的方法PHP 实现字符串翻转(包含中文汉字)的实现代码php简单实现多字节字符串翻转的方法PHP字符串逆序排列实现方法小结【strrev函数,二分法,循环法,递归法】php addslashes 利用递归实现使用反斜线引用字符串PHP常见字符串处理函数用法示例【转换,转义,截取,比较,查找,反转,切割】php实现字符串反转输出的方法PHP反转字符串函数strrev()函数的用法PHP实现字符串翻转功能的方法【递归与循环算法】