你能帮我简化PHP中的代码吗

时间:2018-02-24 10:43:35

标签: php

$quantity = $fetch_barcode['item_price'] / $item->unit_price;
$quantity = $fetch_barcode['item_price'] / $item_kit->unit_price;

我该如何简化?

我想让$quantity有两个值。

我可以使用OR运算符吗?

谢谢

1 个答案:

答案 0 :(得分:0)

在回答你的问题时,不,你不能这样使用OR语句。

您可以做的是根据您获得的数据有条件地$quantity,例如:

$price = !empty($item->unit_price) ? $item->unit_price : $item_kit->unit_price;
$quantity = $fetch_barcode['item_price'] / $price