Maison  >  Article  >  développement back-end  >  php简单实现多字节字符串翻转的方法_PHP教程

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

WBOY
WBOYoriginal
2016-07-13 09:58:41923parcourir

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简单实现多字节字符串翻转的方法。分享给大家供大家参考。具体实现方法如下:...
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn