API15

API15:JDatabase/getTableFields

From Joomla! Documentation

Revision as of 00:26, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Retrieves information about the given tables

[<! removed edit link to red link >]

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

Syntax

getTableFields($tables, $typeonly=true)
Parameter Name Default Value Description
$tables A table name or a list of table names
$typeonly true Only return field types, default true

Returns

array An array of fields by table

Defined in

libraries/joomla/database/database.php

Importing

jimport( 'joomla.database.database' );

Source Body

function getTableFields( $tables, $typeonly = true )
{
        return;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples