如何使用给定的语法在CodeIgniter中显示数据库表名列表:
$tables=$this->db->query("SHOW TABLES LIKE '%Demo%'");
小智.. 7
你可以用这个:
$tables = $this->db->list_tables(); foreach ($tables as $table) { echo $table; }
文件
你可以用这个:
$tables = $this->db->list_tables(); foreach ($tables as $table) { echo $table; }
文件