Magento中获得Product所有属性的Values和Labels

$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'attribute_id');
foreach ( $attribute->getSource()->getAllOptions(true, true) as $option){
attrubuteArray[$option['value']] = $option['label'];
}

你可能感兴趣的:(PHP)