string(1) "3"-6ren">
gpt4 book ai didi

php - 如何在codeigniter中将某个表的id插入到另一个表中

转载 作者:行者123 更新时间:2023-11-29 23:15:54 25 4
gpt4 key购买 nike

我正在插入第一个表中的 2 个表,我正在插入此数组

   array(2) {
[0]=>
array(5) {
["language_id"]=>
string(1) "3"
["property_id"]=>
int(82)
["option_id"]=>
string(2) "10"
["value"]=>
string(0) ""
["value_num"]=>
NULL
}

在第二个中我插入这个数组

array(2) {
["property_type_id"]=>
string(2) "21"
["alt_txt"]=>
string(7) "4666.45"}

这是我在 Controller 中用于插入的函数

    public function save_dynamic($data, $id)
{
// Delete all
$this->db->where('property_id', $id);
$this->db->where('value !=', 'SKIP_ON_EMPTY');
$this->db->delete('property_value');

// Insert all
$insert_batch = array();
foreach($data as $key=>$value)
{
if(substr($key, 0, 6) == 'option')
{
$pos = strpos($key, '_');
$option_id = substr($key, 6, $pos-6);
$language_id = substr($key, $pos+1);

$val_numeric = NULL;
if( is_numeric($value) )
{
$val_numeric = intval($value);
}

$insert_arr = array('language_id' => $language_id,
'property_id' => $id,
'option_id' => $option_id,
'value' => $value,
'value_num' => $val_numeric);

if($value != 'SKIP_ON_EMPTY')
$insert_batch[] = $insert_arr;


}
}

$data=$this->input->post('data');
if(count($insert_batch) > 0)
$this->db->insert_batch('property_value', $insert_batch);
if($this->db->affected_rows() > 0)
$this->db->insert_batch('property_type_details', $data);

这是我的表格的样子

Field Type
id int(11) NOT NULL
language_id int(11) NOT NULL
property_id int(11) NOT NULL
option_id int(11) NOT NULL
value text NULL
value_num int(11) NULL

Field Type
id int(10) unsigned NOT NULL
property_id int(10) NULL
property_type_id int(10) NULL
alt_txt double(10,2) NULL

所以我想做的是将 property_id 与第二个数组一起插入到第二个表中

最佳答案

使用codeigniter返回$this->db->insert_id()或$get_id = $this->db->insert_id

这是我如何从另一个表获取 id:

public function addBanner() {
$data = array('name' => $this->input->post('name'),'status' => $this->input->post('status'));
$this->db->set($data);
$this->db->insert_id();
$this->db->insert('banner');

$banner_id = $this->db->insert_id();

$data = array(
'banner_id' => (int)$banner_id,
'image' => $data_image['file_name'],
'link' => $link
);


$this->db->set($data);
$this->db->insert_id();
$this->db->insert('banner_image');
}
}

return $banner_id;
}

关于php - 如何在codeigniter中将某个表的id插入到另一个表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27815520/

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