It was hinted in a comment to an answer to this question that PHP can not reverse Unicode strings.

As for Unicode, it works in PHP because most apps process it as binary. Yes, PHP is 8-bit clean. Try the equivalent of this in PHP: perl -Mutf8 -e 'print scalar reverse("ほげほげ")' You will get garbage, not "げほげほ". – jrockway

And unfortunately it is correct that PHPs unicode support atm is at best "lacking". This will hopefully change drastically with PHP6.

PHPs MultiByte functions does provide the basic functionality you need to deal with unicode, but it is inconsistent and does lack a lot of functions. One of these is a function to reverse a string.

I of course wanted to reverse this text for no other reason then to figure out if it was possible. And I made a function to accomplish this enormous complex task of reversing this Unicode text, so you can relax a bit longer until PHP6.

Test code:

$enc = 'UTF-8';
$text = "ほげほげ";
$defaultEnc = mb_internal_encoding();

echo "Showing results with encoding $defaultEnc.\n\n";

$revNormal = strrev($text);
$revInt = mb_strrev($text);
$revEnc = mb_strrev($text, $enc);

echo "Original text is: $text .\n";
echo "Normal strrev output: " . $revNormal . ".\n";
echo "mb_strrev without encoding output: $revInt.\n";
echo "mb_strrev with encoding $enc output: $revEnc.\n";

if (mb_internal_encoding($enc)) {
    echo "\nSetting internal encoding to $enc from $defaultEnc.\n\n";

    $revNormal = strrev($text);
    $revInt = mb_strrev($text);
    $revEnc = mb_strrev($text, $enc);

    echo "Original text is: $text .\n";
    echo "Normal strrev output: " . $revNormal . ".\n";
    echo "mb_strrev without encoding output: $revInt.\n";
    echo "mb_strrev with encoding $enc output: $revEnc.\n";

} else {
    echo "\nCould not set internal encoding to $enc!\n";
}
link|improve this question
1  
Don't know why you were downvoted...answering your own question is permitted and encouraged by the faq: stackoverflow.com/faq – ine Jan 12 '09 at 2:50
Yeah, thats what I thought. Didnt see the point of saving the code on my harddrive until someone asked the question. :P (or going the sly way and making another account to ask questions). – OIS Jan 12 '09 at 2:56
It is polite to prepare your answer but not submit it until the community has had a chance to offer their solutions. Even if you know the answer when you submit the question, you will be less likely to be downvoted if you wait an hour or two before posting the answer. – Jonathan Leffler Jan 12 '09 at 3:40
2  
So even if I got an answer ready I should let others do the same work I did myself? The reason I posted this was sorta so they wouldn't have to ... I did hold of marking it as the correct answer because someone could come up with something better. – OIS Jan 12 '09 at 4:29
By polite, he means hypocritical. Part of the SO community is a really strange one. Worried about others gaining points. – PEZ Jan 12 '09 at 15:09
show 1 more comment
feedback

3 Answers

up vote 4 down vote accepted

The answer

function mb_strrev($text, $encoding = null)
{
    $funcParams = array($text);
    if ($encoding !== null)
        $funcParams[] = $encoding;
    $length = call_user_func_array('mb_strlen', $funcParams);

    $output = '';
    $funcParams = array($text, $length, 1);
    if ($encoding !== null)
        $funcParams[] = $encoding;
    while ($funcParams[1]--) {
         $output .= call_user_func_array('mb_substr', $funcParams);
    }
    return $output;
}
link|improve this answer
If I didn't know any better I'd say that you posted the question and answer just for the points as both were posted at the same time. – Evan Fosmark Jan 12 '09 at 2:21
1  
I posted this because 1. This is supposed to be a FAQ site with all questions answered. 2. It would save someone else the trouble. 3. Im tired of all the "You cant do this with PHP". Some of them are true, but not most. – OIS Jan 12 '09 at 2:23
I am however wondering if this can be made community wiki? Im not sure what the "community wiki" is for. – OIS Jan 12 '09 at 2:28
1  
this is what community wiki is for. – Tim Howland Jan 12 '09 at 2:28
1  
Yeah, it would be really scary if you gained points for helping php programmers gain time when they stumble across this problem. – PEZ Jan 12 '09 at 15:05
show 2 more comments
feedback

Here's another way. This seems to work without having to specify an output encoding (tested with a couple of different mb_internal_encodings):

function mb_strrev($text)
{
    return join('', array_reverse(
        preg_split('~~u', $text, -1, PREG_SPLIT_NO_EMPTY)
    ));
}
link|improve this answer
+1 for this. It reminds me of the way to do it in Perl: my $reversed = join '', reverse split /(\X)/, $original; – Lozzer Mar 14 '11 at 14:21
feedback

here's another approach using regex:

function utf8_strrev($str){
 preg_match_all('/./us', $str, $ar);
 return implode(array_reverse($ar[0]));
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.