表数据
以下函数可以获取表信息
$this->db->list_tables();
返回一个包含当前连接数据库中所有表名称的数组。例如:
$tables = $this->db->list_tables();
foreach ($tables as $table)
{
echo $table;
}
$this->db->table_exists();
有时,在对某个表执行操作之前,使用该函数判断指定表是否存在很有用。返回一个布尔值:TRUE/FALSE。例子:
if ($this->db->table_exists('table_name'))
{
// some code...
}
备注:用你所查找的表名替换 table_name
翻译贡献者:
analyzer, Hex, ianyang
最后修改: 2009-06-15 00:19:56