如何使 Json_encode PHP 成为文本字符串数字
How To Make Json_encode PHP To An Text String Number
大家好我想问一下如何使用Json_Encode对文本进行输出
这是我的代码
型号
function count_topup($ID)
{
$this->db->select_sum("Jumlah");
$this->db->from('topup');
$this->db->where('id_user',$ID);
$query= $this->db->get();
return $query->result_array();
}
控制器
$data['Count'] = $this->user_model->count_topup($ID);
查看
<?php echo json_encode($Count);?>
它将给出输出 [{"Jumlah":"150000"}]
如何让只显示150000?感谢您的帮助
不需要json_encode();
控制器:-
$data['Count'] = $this->user_model->count_topup($ID);
$this->load->view('Your_view', $data);
查看:-
foreach ($Count as $c)
{
<?php echo $c['Jumlah'];?>
}
注意:-关于数组数据如何从控制器传递到视图是
大家好我想问一下如何使用Json_Encode对文本进行输出 这是我的代码
型号
function count_topup($ID)
{
$this->db->select_sum("Jumlah");
$this->db->from('topup');
$this->db->where('id_user',$ID);
$query= $this->db->get();
return $query->result_array();
}
控制器
$data['Count'] = $this->user_model->count_topup($ID);
查看
<?php echo json_encode($Count);?>
它将给出输出 [{"Jumlah":"150000"}]
如何让只显示150000?感谢您的帮助
不需要json_encode();
控制器:-
$data['Count'] = $this->user_model->count_topup($ID);
$this->load->view('Your_view', $data);
查看:-
foreach ($Count as $c)
{
<?php echo $c['Jumlah'];?>
}
注意:-关于数组数据如何从控制器传递到视图是