Db::getTableNames

Usage

array Db::getTableNames()

Description

Get a list of all table names within the database.

Return Value

One dimensional array of all table names within the database.

Examples

Get Table Names


$names = $this->db->getTableNames(); print_r($names);

See Also