1

从变量值中减去字段值的正确语法是什么?

例子:

field1 = 100
variable1 = 10

我想使用 codeigniter 的活动记录从 field1 中减去 variable1

我当前的代码如下所示:

$this->db->set('volume', 'volume'-$r['quantity'], FALSE)
                    ->where('code',$r['ingredient_id'])
                    ->update('tbl_ingredients');
volume is the field
$r['quantity] is the variable

它是否正确?因为我得到错误的结果。

4

1 回答 1

5

试试这个

$this->db->set('volume', 'volume-'.$r['quantity'], FALSE)
于 2012-04-17T12:29:24.270 回答