API16:JDatabaseMySQL/getTableFields
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
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/mysql.php
Importing
jimport( 'joomla.database.database.mysql' );
Source Body
public function getTableFields($tables, $typeonly = true) { settype($tables, 'array'); //force to array $result = array(); foreach ($tables as $tblval) { $this->setQuery('SHOW FIELDS FROM ' . $tblval); $fields = $this->loadObjectList(); if ($typeonly) { foreach ($fields as $field) { $result[$tblval][$field->Field] = preg_replace("/[(0-9)]/",'', $field->Type); } } else { foreach ($fields as $field) { $result[$tblval][$field->Field] = $field; } } } return $result; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
