Jump to content

Reversing Array


requnix

Recommended Posts

Hello,I have trouble in reversing array values.My array is:

array(0=>'aaa',1=>'ddd',2=>'bbb',3=>'xxx',4=>'ggg',5=>'ddd');

I want to change it to:

array(0=>'ddd',1=>'ggg',2=>'xxx',3=>'bbb',4=>'ddd',5=>'aaa');

The array reversed, but only the values and it was not sorted.How can I do that?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...