gpt4 book ai didi

database - CodeIgniter - 将输入数组写入数据库

转载 作者:搜寻专家 更新时间:2023-10-30 20:11:06 26 4
gpt4 key购买 nike

我正在尝试从输入字段数组中获取数据并将它们写入数据库。我以前从未使用过数组,但这是我的代码。它基于如果它只是一个输入值我会做什么。我知道这是错误的,但我不知道接下来要尝试什么。有任何想法吗?谢谢。

//view
<input type="text" name="assignments[]">
<input type="text" name="hours[]">

<input type="text" name="assignments[]">
<input type="text" name="hours[]">

<input type="text" name="assignments[]">
<input type="text" name="hours[]">

<input type="text" name="assignments[]">
<input type="text" name="hours[]">

<input type="text" name="assignments[]">
<input type="text" name="hours[]">

//controller
$assignments = $this->input->post('assignments', TRUE);
$hours = $this->input->post('hours', TRUE);

$this->load->model('create', 'create_model');
$this->create_model->create_projects($assignments, $hours);

//model
public function create_projects($assignments, $hours) {

$data = array(
'assignments' => $assignments,
'hours' => $hours,
);
$this->db->insert('projects', $data);
}

最佳答案

当然你不能把一个 PHP 数组按原样放在数据库中:

$data = array(
'assignments' => $assignments, // this is an array
'hours' => $hours, // so is this
);
$this->db->insert('projects', $data);

您需要数组的字符串表示,想到两个选项:

我个人更喜欢 json_encode,因为它不依赖于 PHP 进行读取,序列化对于存储 PHP 对象很有用,但您在这里不需要:

$data = array(
'assignments' => json_encode($assignments),
'hours' => json_encode($hours),
);
$this->db->insert('projects', $data);

确保您的数据库字段是 TEXT 类型,以便它们能够存储可变长度数据。稍后获取数据时,您将必须在每个字段上运行 json_decode() 以读取它并将其转回数组,例如:

$result = $this->db->get('projects')->result();
foreach ($result as $record)
{
$assignments = json_decode($record->assignments);
// Now $assignments is an array
}

关于database - CodeIgniter - 将输入数组写入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12944077/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com