I am using the Amazon S3 SDK for PHP. I am wondering if there is a way to retrieve the objects in a particular order, like by file name, or by modified date. Currently it is just listing them based on when they were uploaded. I am using this method, but maybe there is another method that would fit better.
$object_list_array = $s3->get_object_list(MYBUCKET, array(
'prefix' => '/path/to/folder/with/files/'
));
What is the best way to express what order I would like them returned?