使用codeIgniter在MySQL中查找表是否存在?

时间:2018-02-13 21:37:40

标签: php mysql codeigniter

我想检查MySQL表是否存在于数据库中。我正在使用CodeIgniter 3. * v

message

我在How can I check if a MySQL table exists with PHP?

找到解决方案

1 个答案:

答案 0 :(得分:5)

试试这个

if ($this->db->table_exists($table) )
{
  // table exists some code run query
}
else
{
  // table does not exist
}