Magento多个addFieldToFilter?

时间:2017-10-17 14:51:38

标签: php magento

我想向addFieldToFilter添加多个filter

这就是我目前所拥有的:

$cards = Mage::getModel('giftcards/giftcards')->getCollection()
               ->addFieldToFilter('order_id', $order->getId());
$cards = Mage::getModel('giftcards/giftcards')->getCollection()
               ->AddFieldToFilter('gc_sent', false);

这是正确的方法吗?或者我应该采取另一种方式吗?

谢谢。

1 个答案:

答案 0 :(得分:1)

您可以使用多个过滤器,如下所示

timedelta