php简单实现多字节字符串翻转的方法
内容摘要
本文实例讲述了php简单实现多字节字符串翻转的方法。分享给大家供大家参考。具体实现方法如下:
<?php
function mb_strev ($string, $encoding = null) {
if ($encodi
<?php
function mb_strev ($string, $encoding = null) {
if ($encodi
文章正文
本文实例讲述了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程序设计有所帮助。
代码注释