gpt4 book ai didi

php - 如何在 codeigniter 中显示数据库表名列表

转载 作者:行者123 更新时间:2023-12-05 08:16:33 26 4
gpt4 key购买 nike

如何使用给定的语法在 CodeIgniter 中显示数据库表名列表:

$tables=$this->db->query("SHOW TABLES LIKE '%Demo%'");

最佳答案

你可以使用这个:

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

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

documentation

关于php - 如何在 codeigniter 中显示数据库表名列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34151291/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com