$imageencode = $this->curl->simple_get($reqUrl);

    $data = array(
            'image' => $this->input->post('imageencode')
            );
    $this->db->insert('images_from_balance',$data);


在我的$ imageencode变量中,我将获得图像的二进制代码,我想将其插入到名为image的blob类型字段上的名为images_from_balance的mysql表中。

我认为这是我的数组格式的问题,即来自html表单输入,但是我不知道如何使该数组插入我的变量。

这是我得到的错误:


  发生数据库错误
  
  错误号:1048
  
  列“图片”不能为空
  
  插入images_from_balanceimage)值(NULL)

最佳答案

更新资料

$imageencode = $this->curl->simple_get($reqUrl);
$data = array( 'image' => $this->input->post('imageencode'));


带有:

$imageencode = $this->curl->simple_get($reqUrl);
$data = array( 'image' => $imageencode);

08-25 15:49