This function support utf-8 encoding
function utf8_strrev($str){
preg_match_all('/./us', $str, $ar);
return join('',array_reverse($ar[0]));
}
(PHP 4, PHP 5, PHP 7)
strrev — 反转字符串
$string
)
返回 string
反转后的字符串。
string
待反转的原始字符串。
返回反转后的字符串。
Example #1 使用 strrev() 反转字符串
<?php
echo strrev("Hello world!"); // 输出 "!dlrow olleH"
?>
This function support utf-8 encoding
function utf8_strrev($str){
preg_match_all('/./us', $str, $ar);
return join('',array_reverse($ar[0]));
}