Home  >  Article  >  Backend Development  >  php简单实现多字节字符串翻转的方法_PHP教程

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

WBOY
WBOYOriginal
2016-07-13 09:58:41923browse

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

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

1

2

3

4

5

6

7

8

9

10

11

12

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;

}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/977158.htmlTechArticlephp简单实现多字节字符串翻转的方法 本文实例讲述了php简单实现多字节字符串翻转的方法。分享给大家供大家参考。具体实现方法如下:...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn