Codeigniter update_batch() with included update of the where key

☆樱花仙子☆ 提交于 2019-12-06 12:06:40

I created a helper function mostly identical to the codeigniter batch_update() function.
But with the ability to update the index itself. The new value is defined by index_update_key.

function update_batch($db, $table = '', $set = NULL, $index = NULL, $index_update_key = '') {
if ($table === '' || is_null($set) || is_null($index) || !is_array($set)) {
    return FALSE;
}

$sql = 'UPDATE ' . $db->protect_identifiers($table) . ' SET ';

$ids = $when = array();
$cases = '';

//generate the WHEN statements from the set array
foreach ($set as $key => $val) {
    $ids[] = $val[$index];

    foreach (array_keys($val) as $field) {
        if ($field != $index && $field != $index_update_key) {
            $when[$field][] = 'WHEN ' . $db->protect_identifiers($index) 
                            . ' = ' . $db->escape($val[$index]) . ' THEN ' . $db->escape($val[$field]);
        } elseif ($field == $index) {
            //if index should also be updated use the new value specified by index_update_key
            $when[$field][] = 'WHEN ' . $db->protect_identifiers($index) 
                            . ' = ' . $db->escape($val[$index]) . ' THEN ' . $db->escape($val[$index_update_key]);
        }
    }
}

//generate the case statements with the keys and values from the when array
foreach ($when as $k => $v) {
    $cases .= "\n" . $db->protect_identifiers($k) . ' = CASE ' . "\n";
    foreach ($v as $row) {
        $cases .= $row . "\n";
    }

    $cases .= 'ELSE ' . $k . ' END, ';
 }

 $sql .= substr($cases, 0, -2) . "\n"; //remove the comma of the last case
 $sql .= ' WHERE ' . $index . ' IN (' . implode(',', $ids) . ')';

 return $db->query($sql);
}

Now I can do the following

$set = array(
  array(
    'token'           => '657871316787544',
    'device'          => 'none',
    'new_token_value' => ''
  ),
  array(
    'token'           => '757984513154644',
    'device'          => 'none',
    'new_token_value' => ''
  )
);

update_batch($this->db, 'table_name', $set, 'token', 'new_token_value');

and the sql output is

UPDATE `b2c` SET 
`token` = CASE 
WHEN `token` = '657871316787544' THEN ''
WHEN `token` = '757984513154644' THEN ''
ELSE token END, 
`device` = CASE 
WHEN `token` = '657871316787544' THEN 'none'
WHEN `token` = '757984513154644' THEN 'none'
ELSE device END
WHERE token IN (657871316787544,757984513154644)
hyunwoo kim
$this->db->where('option1', $option1);<br/>
$this->db->update_batch('table_name', $data, 'option2');
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!