I've got an array of objects. The
Code: Select all
print_r()Code: Select all
stdClass Object
(
[type] => book
[name] => Book page
[module] => book
[description] => A book is a collaborative writing effort: users can collaborate writing the pages of the book.
[help] =>
[has_title] => 1
[title_label] => Title
[has_body] => 1
[body_label] => Body
[min_word_count] => 0
[custom] => 0
[modified] => 1
[locked] => 1
[orig_type] => book
)
stdClass Object
(
[type] => event
[name] => Event
[module] => basicevent
[description] => An event is a planned event with a start and end date, and displays in the events calendar.
[help] =>
[has_title] => 1
[title_label] => Title
[has_body] => 1
[body_label] => Body
[min_word_count] => 0
[custom] => 0
[modified] => 1
[locked] => 1
[orig_type] => event
)
stdClass Object
(
[type] => blog
[name] => Blog entry
[module] => blog
[description] => A blog is a regularly updated journal or diary made up of individual posts.
[help] =>
[has_title] => 1
[title_label] => Title
[has_body] => 1
[body_label] => Body
[min_word_count] => 0
[custom] => 0
[modified] => 1
[locked] => 1
[orig_type] => blog
)Code: Select all
sort()Any ideas?