Jak wyświetlić listę nazw tabel bazy danych w Codeigniter

$tables = $this->db->list_tables();

foreach ($tables as $table)
{
   echo $table;
}
Repulsive Rhinoceros