从magento 1.7的可配置产品中获取选项?

时间:2013-05-23 14:03:59

标签: php magento magento-1.7 configurable-product

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

http://imageshack.us/photo/my-images/42/bildschirmfoto20130521u.png/ (Längeinmm = length,Breite in mm = width)

丹尼尔

1 个答案:

答案 0 :(得分:0)

您可以按以下方式获取

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

带有属性

要了解更多信息,请参阅下面的Link