gpt4 book ai didi

php - 在 codeigniter 库中使用 mysql

转载 作者:太空宇宙 更新时间:2023-11-03 12:31:37 26 4
gpt4 key购买 nike

如果我想执行查询,如何在 codeigniter 的库中使用 mysql 实例。该类看起来像

class Dtables {

private $_db;

function __construct()
{
//initialize $_db;

}

function mysql()
{
$sQuery ="//some mysql query string";
$this->db->query($sQuery);
}
}

最佳答案

您需要在您的库中引用 CI 对象实例:

class Dtables {

private $CI;

function __construct()
{
$this->CI =& get_instance();
$this->CI->load->database();
}

function mysql()
{
$sQuery ="//some mysql query string";
$this->CI->db->query($sQuery);
}
}

关于php - 在 codeigniter 库中使用 mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15051228/

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