¿Ya consultaste el manual?
Si miras los ejemplos del manual descubrirás lo siguiente:
Cita:
Iniciado por http://php.net/manual/es/function.strrev.php#62422 This function support utf-8 encoding
Código PHP:
function utf8_strrev($str){
preg_match_all('/./us', $str, $ar);
return join('',array_reverse($ar[0]));
}
Por eso siempre hay que
leer el manual antes de abrir cualquier tema.