Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

LivePipe Blog:
Complex Sorting with PHP
Jun 28, 2007 @ 12:11:21

On the LivePipe blog today, there's a quick new article demonstrating a sorting method that can be used for more than just simple datasources:

Most often when I need to sort complex data sets, I'm using some sort of SQL backend. Today I needed to do complex sorting of Reflection objects for some auto generating documentation I'm working on for the upcoming Picora release. [...] In the usort() examples, I had always been under the assumption that the return values had to be 0, 1 or -1. Today I learned that is not true at all, and you can come up with your own scoring system with any range, negative or positive.

He illustrates the point with a simple example showing the sorting of the documentation for Picora. In his protected function, scoreFromMethod, he defines the return array with several values instead of just the one.

tagged: complex sort usort example picora complex sort usort example picora

Link:

LivePipe Blog:
Complex Sorting with PHP
Jun 28, 2007 @ 12:11:21

On the LivePipe blog today, there's a quick new article demonstrating a sorting method that can be used for more than just simple datasources:

Most often when I need to sort complex data sets, I'm using some sort of SQL backend. Today I needed to do complex sorting of Reflection objects for some auto generating documentation I'm working on for the upcoming Picora release. [...] In the usort() examples, I had always been under the assumption that the return values had to be 0, 1 or -1. Today I learned that is not true at all, and you can come up with your own scoring system with any range, negative or positive.

He illustrates the point with a simple example showing the sorting of the documentation for Picora. In his protected function, scoreFromMethod, he defines the return array with several values instead of just the one.

tagged: complex sort usort example picora complex sort usort example picora

Link:


Trending Topics: