我正在使用CI并在数据库中插入内容,我正在使用活动记录方法。
$this->user->insert($input);
在$input
如下所示无效。
array(8) {
["user_type"]=>
string(1) "7"
["first_name"]=>
string(6) "manoja"
["last_name"]=>
string(5) "hippo"
["mobile"]=>
string(15) "+91 94456594456"
["country"]=>
string(2) "IN"
["state"]=>
string(4) "1923"
["city"]=>
string(7) "Bijapur"
}
但是如果使用$this->db
给出查询,那么它正在运行。我已经确认'用户'模型(class user extends MY_Model
)扩展了'MY_Model'。
$this->db->insert('users', $input);
以上查询有效。
可能是什么问题?请帮忙。