热门 按字节反转和按字反转 2016-6-12 作者:小指 分类:php 评论:0 次 热度:5098°C 点赞:0次 翻转字符串:按字节反转:strrev按字反转:explode array_reverse implode$str="one two three"; print strrev($str); $str_arr1=explode(' ',$str); $str_arr2=array_reverse($str_arr1); $str_rev=implode(' ',$str_arr2); print $str_rev; print (implode('&... 阅读全文 评论