JDatabase/loadResultArray: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Load an array of single field results into an array
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JDatabase/loadResultArray|Edit ... |
m preparing for archive only |
||
| (One intermediate revision by the same user not shown) | |||
| Line 3: | Line 3: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 36: | Line 36: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=loadResultArray | category=loadResultArray | ||
category=JDatabase | category=JDatabase | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API15]] | |||
Latest revision as of 00:26, 25 March 2017
Description
Load an array of single field results into an array
[<! removed edit link to red link >]
<! 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.php
Importing
jimport( 'joomla.database.database' );
Source Body
function loadResultArray($numinarray = 0)
{
return;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples