Manuál PHP | ||
---|---|---|
PÅ™edcházejÃcà | Dalšà |
dbx_sort
(PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
dbx_sort -- Sort a result from a dbx_query by a custom sort functionPopis
bool dbx_sort ( object result, string user_compare_function )Sort a result from a dbx_query() call with a custom sort function.
Seznam parametrů
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.
PÅ™Ãklady
Poznámky
Poznámka: It is always better to use ORDER BY SQL clause instead of dbx_sort() if possible.
PÅ™edcházejÃcà | Domů | Dalšà |
dbx_query | Nahoru |