php简单实现多字节字符串翻转的方法

原创 2017-02-06 11:57:05 272
摘要:本文实例讲述了php简单实现多字节字符串翻转的方法。分享给大家供大家参考。具体实现方法如下:<?php function mb_strev ($string, $encoding = null) {  if ($encoding === null) {   $en

本文实例讲述了php简单实现多字节字符串翻转的方法。分享给大家供大家参考。具体实现方法如下:

<?php
function mb_strev ($string, $encoding = null) {
 if ($encoding === null) {
  $encoding = mb_detect_encoding($string);
 }
 $length = mb_strlen($string, $encoding);
 $reversed = '';
 while($length-- > 0) {
  $reversed .= mb_substring($string, $length, 1, $encoding);
 }
 return $reversed;
}

更多关于php简单实现多字节字符串翻转的方法请关注PHP中文网(www.php.cn)其他文章!

发布手记

热门词条