JDatabaseMySQLi/loadResultArray
From Joomla! Documentation
< API16:JDatabaseMySQLi
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description
Load an array of single field results into an array
<! removed transcluded page call, red link never existed >
Syntax
loadResultArray($numinarray=0)
Parameter Name | Default Value | Description |
---|---|---|
$numinarray | 0 |
Defined in
libraries/joomla/database/database/mysqli.php
Importing
jimport( 'joomla.database.database.mysqli' );
Source Body
public function loadResultArray($numinarray = 0)
{
if (!($cur = $this->query())) {
return null;
}
$array = array();
while ($row = mysqli_fetch_row($cur)) {
$array[] = $row[$numinarray];
}
mysqli_free_result($cur);
return $array;
}
<! removed transcluded page call, red link never existed >