Reverse string in PHP

Snippet

Reverse string using strrev() function:

downloadcopy
<?php  
$string = "WTOOLS";  
echo "Reverse string of $string is " .strrev ( $string );
Be careful, it does not work with unicode strings.

Reverse string without using strrev() and support utf-8 encoding:

downloadcopy
<?php  
function mb_strrev($str){
    $r = '';
    for ($i = mb_strlen($str); $i>=0; $i--) {
        $r .= mb_substr($str, $i, 1);
    }
    return $r;
}
echo mb_strrev("❤WTOOLS☆");