API15:JDatabase/getTableFields
From Joomla! Documentation
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