您现在的位置: 万盛学电脑网 >> 程序编程 >> 网络编程 >> php编程 >> 正文

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

作者:佚名    责任编辑:admin    更新时间:2022-06-22

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

1 2 3 4 5 6 7 8 9 10 11 12 <?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; }