function getRev($str,$encoding='utf-8'){ $result = ''; $len = mb_strlen($str); for($i=$len-1; $i>=0; $i--){ $result .= mb_substr($str,$i,1,$encoding); } return $result; }
posted on 2017-02-14 12:13 studyphp 阅读(134) 评论(0) 编辑 收藏 举报