requnix 0 Posted February 18, 2010 Report Share Posted February 18, 2010 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? Quote Link to post Share on other sites
requnix 0 Posted February 18, 2010 Author Report Share Posted February 18, 2010 Nah forget it, I just found the array_reverse() function. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.