码迷,mamicode.com
首页 > Web开发 > 详细

PHP字符串反转

时间:2017-02-14 14:08:41      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:nbsp   utf-8   turn   反转   div   for   odi   strlen   style   

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;
    }

 

PHP字符串反转

标签:nbsp   utf-8   turn   反转   div   for   odi   strlen   style   

原文地址:http://www.cnblogs.com/already/p/6397053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!