如何在 CI4 的帮助程序函数中访问数据库



CI4:我已经在控制器中创建了数据库对象,我想执行有一些查询的辅助函数,

问:如何在 CI4 的帮助程序函数中访问数据库?

您可以通过在帮助程序函数中添加这些行来使用

$db = db_connect();
$result = $db->query("SELECT * FROM table")->getResult();

您可以从模型访问构建器。

$model = new SomeModel();
$builder = $model->builder();
$builder->db  //returns the db conn used in model

相关内容

  • 没有找到相关文章

最新更新