API16

JDatabaseMySQLi/loadAssoc

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[edit]

Fetch a result row as an associative array


<! removed transcluded page call, red link never existed >

Syntax[edit]

loadAssoc()


Returns[edit]

array

Defined in[edit]

libraries/joomla/database/database/mysqli.php

Importing[edit]

jimport( 'joomla.database.database.mysqli' );

Source Body[edit]

public function loadAssoc()
{
        if (!($cur = $this->query())) {
                return null;
        }
        $ret = null;
        if ($array = mysqli_fetch_assoc($cur)) {
                $ret = $array;
        }
        mysqli_free_result($cur);
        return $ret;
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]