Re: [PHP] sorting an array of objects

2001-10-24 Thread Matt McClanahan
On Wed, Oct 24, 2001 at 10:43:53AM +0100, L Melville wrote: > Is it possible to sort a class array using array multisort, I have two items > in each class that I wish to sort by, one is a text and the other is the > first item in an array within within each class. i.e.;- > > $class[$index]->text

[PHP] sorting an array of objects

2001-10-24 Thread L Melville
Hi, Is it possible to sort a class array using array multisort, I have two items in each class that I wish to sort by, one is a text and the other is the first item in an array within within each class. i.e.;- $class[$index]->text; $class[$index]->array[0]; how can I do this? thanks in advance