cgm225 Posted July 26, 2007 Share Posted July 26, 2007 If I have two arrays, lets say $albums and $times that output, for example, Array ( [0] => Album [1] => Album2 [2] => Album3 [3] => july4 [4] => Album5 [5] => Album6 ) Array ( [0] => 1183084603 [1] => 1182993795 [2] => 1183267359 [3] => 1183775545 [4] => 1185414909 [5] => 1185073583 ) If the starting order of each array has the corresponding album and time already in the same numerical spot, how can I sort both arrays by the times in the second array (so that the newest albums are first)? Thank you all in advance. Link to comment https://forums.phpfreaks.com/topic/61781-solved-sorting-two-arrays-based-on-the-value-of-one/ Share on other sites More sharing options...
teng84 Posted July 26, 2007 Share Posted July 26, 2007 sort() Link to comment https://forums.phpfreaks.com/topic/61781-solved-sorting-two-arrays-based-on-the-value-of-one/#findComment-307618 Share on other sites More sharing options...
cgm225 Posted July 26, 2007 Author Share Posted July 26, 2007 nope.. array_multisort () but thanks for getting me started in the right direction Link to comment https://forums.phpfreaks.com/topic/61781-solved-sorting-two-arrays-based-on-the-value-of-one/#findComment-307622 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.