aside from doing the actual work of iterating through an associative array, pushing a value into a new array and setting that equal the array of remaining fields, is there an array function built into PHP that would do something like this?
if so, what is it?
i would be changing the following:
array(
[0] => array(
[created] => 12512512,
[name] => something
)
)
into something like this:
array(
[12512512] => array(
[created] => 12512512,
[name] => something
)
)
created), then it's easy enough to write a simple function to do that.