如何在Codeigniter中以Json格式插入数据

时间:2019-07-09 11:27:12

标签: arrays json codeigniter codeigniter-3

我的数据库中有3个字段,我想按行添加数据,请帮助我将这些数据添加到数据库中。

3 个答案:

答案 0 :(得分:0)

您可以使用

$json = json_encode($data);

https://www.php.net/manual/en/function.json-encode.php

答案 1 :(得分:0)

$response = array('status' => 'OK');

$this->output
        ->set_status_header(200)
        ->set_content_type('application/json', 'utf-8')
        ->set_output(json_encode($response, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES))
    ->_display();
exit;

答案 2 :(得分:0)

使用此示例将json数据插入数据库表

$data = array(
    'name'=>$this->input->post('name'),
    'mobile'=>$this->input->post('phone_number'),
    'email'=>$this->input->post('email'),
    'message'=>$this->input->post('message'),
    'contact_for'=>$this->input->post('user_type'),
    'ip_address'=>$this->input->ip_address(),
    'browser_info'=>$this->agent->browser().' - '.$this->agent->version(),
 ); 

  $json = json_encode($data);
  $insertField = array('json_field' => $json);

  $this->db->insert('tbl_name', $insertField);

  if ($this->db->affected_rows() > 0) {
     $insert_id = $this->db->insert_id();
     return $insert_id;
  }
  return false;