0

在我的产品页面上,我有两个选择。可以手动输入的产品的长度和宽度。在我的 cart.php 中我想知道长度和宽度。我怎样才能得到这两个值?

http://imageshack.us/photo/my-images/42/bildschirmfoto20130521u.png/(Länge in mm = 长度,Breite in mm = 宽度)

丹尼尔

4

1 回答 1

0

你可以获取如下

$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'color');  
foreach ($attribute->getSource()->getAllOptions(true) as $option) {
    echo $option['value'] . ' ' . $option['label'] . "\n";
}

带属性

更多了解请参考以下链接

于 2013-05-23T16:56:51.610 回答