gpt4 book ai didi

php - 使用if语句向数据库中插入数据

转载 作者:行者123 更新时间:2023-11-29 06:14:27 27 4
gpt4 key购买 nike

我编写了一个代码,使用 codeigniter 将输入数据插入数据库,但在插入之前,数据将通过 if 语句检查输入,如果满足条件,数据将被保存。

我试图检查输入数据是否等于部分,然后父 ID 必须为 0。否则,如果不是部分,则必须将输入的 $data['type'] 插入到数据库中,并且父 ID 不能为 0。到目前为止,这是我的代码。

$data = array (
'title' => $this->input->post->('title'),
'type' => $this->input->post->('type'),
'description' => $this->input->post->('description')
);


if ($data['type'] == 'section') {
$data['parent_id'] = 0;
} else {
$data['parent_id'] = $this->input->post('parent_id');
$data['type'] = $this->input->post('type');
}
$result = $this->checklist_item_model->put_item($data);

模型

public function put_item ($data) {
$this->db->insert('items', $data);
}

最佳答案

您可以将条件创建为

if($this->input->post('type')=='section')
{
$data = array(
'title' => $this->input->post('title'),
'type' => $this->input->post('type'),
'description' => $this->input->post('description'),
'parent_id' => 0// if section==0 condition
);
} else {
$data = array(
'title' => $this->input->post('title'),
'type' => $this->input->post('type'),
'description' => $this->input->post('description'),
'parent_id' => $this->input->post('parent_id')
);
}

$result = $this->checklist_item_model->put_item($data);

关于php - 使用if语句向数据库中插入数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36638512/

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