代码之家  ›  专栏  ›  技术社区  ›  XxnumbxX

set语句内部的Codeigniter算法

  •  1
  • XxnumbxX  · 技术社区  · 6 年前

    array key ,下面是语句,但我无法使用数组键。我是新来的,可能没有创建正确的声明。感谢您的帮助。

    $this->db->set('product_qoh', 'product_qoh - $item['sold']' ,FALSE);
    
    1 回复  |  直到 6 年前
        1
  •  2
  •   XxnumbxX    6 年前

    下面的代码对我有效,上面的代码将单元格值替换为$item['sell']的负数。

    $this->db->set('product_qoh', 'product_qoh - '  .$item['sold'] ,FALSE);