如何在数组中存储产品数量
我有一个数据数组,它将所有产品的购物车中的所有项目合计为一个数字。
我一直在尝试找出一种方法来获取数据数组计数()购物车中所有不同项目的所有不同总数,并将它们呈现在我的数据层中,以逗号分隔。我希望这是有道理的。
if ($order->getId()) {
$items = $order->getAllVisibleItems();
$itemIds = array();
$itemNames = array();
$itemPrices = array();
$itemMargins = array();
$itemTypes = array();
$itemGenders = array();
$itemSports = array();
$itemCategoryIds = array();
$itemCategoryNames = array();
/** @var Mage_Sales_Model_Quote_Item $item */
foreach ($items as $item) {
// Get the parent item - it is NOT included in the quote due to
// customizations made by the OrganicInternet module for simple
// product pricing. So I had to come up with another way to get it.
$options = $item->getProductOptions();
$parent = $item->getProduct();
if (array_key_exists('info_buyRequest', $options)) {
if (array_key_exists('cpid', $options['info_buyRequest'])) {
$parentId = $options['info_buyRequest']['cpid'];
$parent = Mage::getModel('catalog/product')->getCollection()
->addAttributeToSelect('name')
->addAttributeToSelect('season')
->addAttributeToSelect('gender')
->addAttributeToSelect('sport')
->addAttributeToFilter('entity_id', $parentId)
->getFirstItem();
}
}
$itemIds[] = $item->getSku();
$itemNames[] = $parent->getName();
$itemPrices[] = $item->getBasePrice() ?: 0;
$itemMargins[] = $this->_calculateMargin($parent, null, $item);
$itemTypes[] = $parent->getAttributeText('season');
$itemGenders[] = $parent->getAttributeText('gender');
$itemSports[] = $parent->getAttributeText('sport') ?: 'Other';
$categories = $this->_getAllCategoryIdsAndNames($item->getProduct());
$itemCategoryIds[] = $categories['id'];
$itemCategoryNames[] = $categories['name'];
}
// # Products
$data['u1'] = count($items);
以上将返回:
dataLayer = [{“visitorLoginState”:“Logged out”,“visitorType”:“NOT LOGGED IN”,“visitorLifetimeValue”:0,“visitorExistingCustomer”:“No”,“u1”:2,“u2”:[“889623392590”,“889623135517”]
它显示了数据数组中 U1 变量的 2 个乘积和 u2 变量的两个 sku。
如果我对第一个SKU有多个产品,我希望它能分开数量。即.."u1":1,1,3
我会使用或某种类型的多维数组来获得我的需求吗?array_sum