我有一行名为'quantity',我在这个字段中有数量。我如何计算codeigniter中的数量总数并将它们传递给查看? 我从数据库表中获取'quantity'行并在for循环中计算它们。
答案 0 :(得分:0)
您可以使用select_sum
查询构建器方法。
$total_quantity = 0;
$row = $this->db->select_sum('quantity', 'total_quantity')->get('your_table')->row();
if (isset($row)) {
$total_quantity = $row->total_quantity;
}
$this->load->view('your_view', ['total_quantity' => $total_quantity]);