JArrayHelper/getColumn: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Extracts a column from an array of arrays or objects
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JArrayHelper/getColumn|Edit De... |
No edit summary |
||
| Line 17: | Line 17: | ||
!Description | !Description | ||
|- | |- | ||
| | | &$array | ||
| | | | ||
| $array The source array | | $array The source array | ||
Revision as of 10:19, 30 March 2010
Description
Extracts a column from an array of arrays or objects
Template:Description:JArrayHelper/getColumn
Syntax
getColumn(&$array, $index)
| Parameter Name | Default Value | Description |
|---|---|---|
| &$array | $array The source array | |
| $index | $index The index of the column or name of object property |
Returns
array Column of values from the source array
Defined in
libraries/joomla/utilities/arrayhelper.php
Importing
jimport( 'joomla.utilities.arrayhelper' );
Source Body
function getColumn(&$array, $index)
{
$result = array ();
if (is_array($array))
{
$n = count($array);
for ($i = 0; $i < $n; $i++)
{
$item = & $array[$i];
if (is_array($item) && isset ($item[$index])) {
$result[] = $item[$index];
} elseif (is_object($item) && isset ($item-> $index)) {
$result[] = $item-> $index;
}
// else ignore the entry
}
}
return $result;
}
[Edit See Also] Template:SeeAlso:JArrayHelper/getColumn
Examples
<CodeExamplesForm />