Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如标题所解释的那样,在 Magento 中,这两者之间有什么区别:
$product->getPrice();
v
$product->getFinalPrice();
获得最终价格包括折扣。
getFinalPrice 检查产品是否有折扣,如果此折扣有效,则该方法应用折扣并返回文字“最终价格”,如果您检查 getPrice(),您将获得该产品的简单价格。