API16

Difference between revisions of "JDatabaseMySQLi/loadAssoc"

From Joomla! Documentation

< API16:JDatabaseMySQLi
(New page: ===Description=== Fetch a result row as an associative array <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDatabaseMySQLi/loadAssoc|Edit Descripto...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Fetch a result row as an associative array
 
Fetch a result row as an associative array
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JDatabaseMySQLi/loadAssoc|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JDatabaseMySQLi/loadAssoc}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 36: Line 34:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JDatabaseMySQLi/loadAssoc|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JDatabaseMySQLi/loadAssoc}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=loadAssoc
 
  category=loadAssoc
 
  category=JDatabaseMySQLi
 
  category=JDatabaseMySQLi
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:29, 24 March 2017

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]