$quantity = $fetch_barcode['item_price'] / $item->unit_price;
$quantity = $fetch_barcode['item_price'] / $item_kit->unit_price;
我该如何简化?
我想让$quantity
有两个值。
我可以使用OR运算符吗?
谢谢
答案 0 :(得分:0)
在回答你的问题时,不,你不能这样使用OR语句。
您可以做的是根据您获得的数据有条件地$quantity
,例如:
$price = !empty($item->unit_price) ? $item->unit_price : $item_kit->unit_price;
$quantity = $fetch_barcode['item_price'] / $price