think-orm
think-orm copied to clipboard
Think ORM——the PHP Database&ORM Framework
Results
251
think-orm issues
Sort by
recently updated
recently updated
newest added
模拟一个扣库存动作 ``` for ($i = 0; $i < 10; $i++) { $info = (new MerchantGoods())->where('id', 1)->findOrEmpty(); $info->dec('stock_qty', 1)->save(); } ``` 上面的写法执行后无论库存数是都是,最终均会被设置成1 跟踪后发现最后一次执行的update语句为UPDATE `b_merchant_goods` SET `stock_qty` = '1' WHERE `id` =...