Fastest way to process this array using PHP

BrittanyS

New Member
I am looking to go from:\[code\]array($ID => array (name => $name, created => $timestamp))\[/code\]e.g\[code\][5632][name] = martin[5632][created] = 131232342[6742][name] = paul[6742][created] = 131232312[6321][name] = peter[6321][created] = 131232311\[/code\]to an array of ids ordered by creation like\[code\][0] = 6321[1] = 6742[2] = 5632\[/code\]What is the fastest way to achieve such in PHP?
 
Back
Top