vote up 0 vote down star

i have a string .

i want to reverse the letters in every word not reverse the words order.

like - 'my string'

should be

'ym gnirts'

flag

5 Answers

vote up 6 vote down check

This should work:

$words = explode(' ', $string);
$words = array_map('strrev', $words);
echo implode(' ', $words);

Or as a one-liner:

echo implode(' ', array_map('strrev', explode(' ', $string)));
link|flag
+1: The array_map is a nice touch! – David Schmitt Jul 23 at 6:49
1  
knahT uoy :o))) – deceze Jul 23 at 6:58
vote up 2 vote down
echo implode(' ', array_reverse(explode(' ', strrev('my string'))));

This is considerably faster than reversing every string of the array after exploding the original string.

link|flag
True, as array functions are faster than string functions. Does it matter? Not unless you're reversing a few billion strings at once. – deceze Jul 23 at 7:11
vote up 1 vote down

Functionified:

<?php

function flipit($string){
    return implode(' ',array_map('strrev',explode(' ',$string)));
}

echo flipit('my string'); //ym gnirts

?>
link|flag
vote up 0 vote down

This should do the trick:

function reverse_words($input) {
    $rev_words = [];
    $words = split(" ", $input);
    foreach($words as $word) {
        $rev_words[] = strrev($word);
    }
    return join(" ", $rev_words);
}
link|flag
split() is part of the POSIX Regex extension, and is deprecated in PHP 5.3.0 in favour of Perl-Compatible Regex (PCRE). But you don't need regex anyway, you just need explode(). – too much php Jul 23 at 6:45
Ah, good to know, thanks. – David Schmitt Jul 23 at 6:48
vote up 0 vote down

I would do:

$string = "my string";
$reverse_string = "";

// Get each word
$words = explode(' ', $string);
foreach($words as $word)
{
  // Reverse the word, add a space
  $reverse_string .= strrev($word) . ' ';
}

// remove the last inserted space
$reverse_string = substr($reverse_string, 0, strlen($reverse_string) - 1);
echo $reverse_string;
// result: ym gnirts
link|flag

Your Answer

Get an OpenID
or

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