gpt4 book ai didi

php - 如何使用 addAttributeToFilter 在 Magento 中搜索 db 中的多选值?

转载 作者:行者123 更新时间:2023-11-29 18:27:36 27 4
gpt4 key购买 nike

我在数据库中有数组值,我也想从数组中搜索值。

例如:

我有一个数组 ('13,14') 并且在数据库中我有类似 (13,14)(13) 的值> 或 (14)(15)。因此,当我搜索 ('13,14') 结果时,显示的值应至少包含其中之一。

最佳答案

我假设您使用的是集合,因为 addAttributeToFilter() 是一个集合方法。以下是如何针对给定属性使用一组可能性来过滤集合:

$myCollection->addAttributeToFilter('id', array('in' => array('13','14')));

'id' 是您的属性的名称。您还可以使用运算符 nin 而不是 in 来指定一组您不希望属性值出现的值。在此处检查其他运算符:https://fishpig.co.uk/magento/tutorials/addattributetofilter/

关于php - 如何使用 addAttributeToFilter 在 Magento 中搜索 db 中的多选值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46032091/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com