dbx_sort()
dbx_sort - Sort a result from a dbx_query by a custom sort function
Syntax
bool dbx_sort (
object $result,
string $user_compare_function)
Arguments
- result - A result set returned by dbx_query().
- user_compare_function - The user-defined comparison function. It must accept two arguments and return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second.
Description
Sort a result from a dbx_query() call with a custom sort function.
Version
PHP 4.0.6, 5 <= 5.0.5, PECL dbx >= 1.1.0
Return value
Returns TRUE on success or FALSE on failure.