gpt4 book ai didi

php codeigniter选择数据

转载 作者:行者123 更新时间:2023-11-29 10:30:16 24 4
gpt4 key购买 nike

我有一个在 mysql 工具中运行的查询命令。

SELECT * FROM t_table1 WHERE id=18888

但是当尝试在 php codeigniter 中执行此命令时,不返回任何行。我试图获取日志进程:

$report = array();
$report['sql'] = $this->db->last_query();
$report['error'] = $this->db->_error_number();
$report['message'] = $this->db->_error_message();
$report['aff_row'] = $this->db->affected_rows();

print_r($report);

没有错误消息,但affected_rows = 0;

但是这些行在一个函数中,有时它可以工作,但是当我尝试更改数据库时,它就无法工作。

请帮忙..

最佳答案

你可以试试这个..

$this->db->select('*');
$this->db->where('whatever');
$query = $this->db->get('table');
$num = $query->num_rows();

关于php codeigniter选择数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47526619/

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