Jump to content

[SOLVED] Reverse string bits?


AtomicRax

Recommended Posts

I'm trying to reverse a string, but I don't want it completely backwards...

 

I have:

 

$str = "10,8,6,4,2";

 

It is not an array, and can't be an array. It's simply a string with commas.

 

I want to reverse it so it says "2,4,6,8,10". BUT, if I do a regular string reverse, it'll say "2,4,6,8,01" That's not what I'm looking for... How can I do this?

Link to comment
Share on other sites

Maybe there's an easier way but you can explode it with a comma delimiter, reverse the the array, and implode it back together.

 

$str = "10,8,6,4,2";
$p = explode(",",$str);
$str = implode(",",array_reverse($p));
echo $str;

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.