JArrayHelper/sortObjects: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Utility function to sort an array of objects on a given field
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JArrayHelper/sortObje... |
No edit summary |
||
| Line 17: | Line 17: | ||
!Description | !Description | ||
|- | |- | ||
| | | &$a | ||
| | | | ||
| $arr An array of objects | | $arr An array of objects | ||
Revision as of 10:19, 30 March 2010
Description
Utility function to sort an array of objects on a given field
Template:Description:JArrayHelper/sortObjects
Syntax
sortObjects(&$a, $k, $direction=1)
| Parameter Name | Default Value | Description |
|---|---|---|
| &$a | $arr An array of objects | |
| $k | $k The key to sort on | |
| $direction | 1 | $direction Direction to sort in [1 = Ascending] [-1 = Descending] |
Returns
array The sorted array of objects
Defined in
libraries/joomla/utilities/arrayhelper.php
Importing
jimport( 'joomla.utilities.arrayhelper' );
Source Body
function sortObjects(&$a, $k, $direction=1)
{
$GLOBALS['JAH_so'] = array(
'key' => $k,
'direction' => $direction
);
usort($a, array('JArrayHelper', '_sortObjects'));
unset($GLOBALS['JAH_so']);
return $a;
}
[Edit See Also] Template:SeeAlso:JArrayHelper/sortObjects
Examples
<CodeExamplesForm />