我想搜索特定商店的产品,magento
并希望以product ids
编程方式获取数组中的所有内容。就像下面的方法一样,它$searchstring
作为参数和return $ids
数组,其中包含产品名称包含的所有产品的产品 ID search string
。
function getProductIdsBySearch($searchstring, $storeId) {
$ids = array();
//
// Code to Search Product by $searchstring and get Product IDs
//
return $ids;
}
喜欢 :- 如果我们在目录中有以下产品
ID Product Name
1 Temp
2 ProductTemp
3 ProductTempData
4 ABCTEMPXYZ
5 ABCXYZ
6 Tempdata
并且搜索字符串是temp那么它应该返回 1,2,3,4,6 而不是 5,因为temp与具有id = 5
.