码迷,mamicode.com
首页 > 其他好文 > 详细

字符串反转方法收集

时间:2018-01-11 11:38:48      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:return   blog   mes   result   color   res   bsp   bst   def   

1.单字节字符串反转

php提供了现成的用于字符串反转的函数strrev()

$str = ‘abcdef123‘;
echo strrev($str)

2.对于包含中文的多字节字符串需要用到mb_substr()

$str = ‘字符串反转‘;

function rev($str, $encoding = ‘utf-8‘){
    $len = mb_strlen($str);
    $result = ‘‘;

    for ($i = $len-1; $i>=0; $i--){
        $result.= mb_substr($str,$i,1,$encoding);
    }

    return $result;
}

echo rev($str);

3.算法实现 首位交换

$str = ‘abcdefg123‘;
$len = strlen($str);
$times = $len/2;

for($i = 0;$i <= $times; $i++ ){
    $tmp = $str[$i];
    $str[$i] = $str[$len-$i-1];
    $str[$len-$i-1] = $tmp;
}

echo $str;

 

字符串反转方法收集

标签:return   blog   mes   result   color   res   bsp   bst   def   

原文地址:https://www.cnblogs.com/phpper/p/8266973.html

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