CodeIgniter - Best way for checking true result

后端 未结 1 683
太阳男子
太阳男子 2021-01-15 21:56

What’s the best way for checking if some method in model or anywhere else was correctly carried out?

Is this a good way?

Model:

$data[\'field         


        
相关标签:
1条回答
  • 2021-01-15 22:31

    try with these

    // INSERT

    $this->db->insert_id();
    

    // UPDATE and DELETE

    $this->db->affected_rows();
    

    // SELECT

    $this->db->num_rows();  
    
    0 讨论(0)
提交回复
热议问题