如何制作计数数据

问题描述 投票:0回答:0
public function index()
{
    $yek = $this->input->post("KEY");
    $cek = $this->m_user->get('KEY' => $yek)->num_rows();//line 14
    $response = array();
    if ($cek > 1)
    {
        $list = $this->m_masalah->jenis();
    }
    foreach ($list as $key ) {
        $arr = array();
        $arr['ID_MASALAH']      = $key['ID_MASALAH'];
        $arr['MASALAH']         = $key['MASALAH'];
        $arr['JENIS']           = $key['JENIS'];
        array_push($response, $arr);
    }
    echo $json_response = json_encode($response);
} 

这是我的错误

解析错误:语法错误,意外的“=>” (T_DOUBLE_ARROW),期待 ',' 或 ')' E:\xampp\htdocs\sengketa_dpbt 应用程序

php codeigniter count
© www.soinside.com 2019 - 2024. All rights reserved.