MySQLi Table Exists

后端 未结 5 408
無奈伤痛
無奈伤痛 2021-01-15 00:33

In PHP, what would be the best way of seeing if a table exists?

This is what I am using so far

public function TableExists($table) {
    $res = $thi         


        
5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-15 01:09

    Colin has the right solution -- to use SHOW TABLES LIKE. Here is what it would look like using your code:

    public function TableExists($table) {
      $res = $this->Query("SHOW TABLES LIKE $table");
      return mysql_num_rows($res) > 0;
    }
    

提交回复
热议问题