gpt4 book ai didi

mysql - 如何回显mysql选择结果codeigniter

转载 作者:行者123 更新时间:2023-11-29 05:09:12 25 4
gpt4 key购买 nike

我在 codeigniter 中编写了以下 mysql 查询

  $query = $this->db->query("SELECT count(`leave_status`) FROM `teacher_attendance` WHERE `teacher_id`='20' AND `leave_status`='6'");
if($query->num_rows() > 0){
$result = $query->row_array();
print_r($result);
echo $result;
}

回声$结果;它什么都不打印;与 print_r($result); Array ( [count(leave_status)] => 7 ) 这样的数组

但是如何将这个值 7 返回给回显呢?

最佳答案

$result 是一个associative array 你不能直接echo it.Access 的值>leave_status 使用 $result['leave_status']。如下所示。

$query = $this->db->query("SELECT count(`leave_status`) AS leave_status FROM `teacher_attendance` WHERE `teacher_id`='20' AND `leave_status`='6'");
if($query->num_rows() > 0){
$result = $query->row_array();
//print_r($result);
$total = $result['leave_status'];
echo $total ;//prints 7
}

关于mysql - 如何回显mysql选择结果codeigniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42500371/

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