Magento中获得Product所有属性的Values和Labels_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > Magento中获得Product所有属性的Values和Labels

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

 2010/9/19 23:34:15  cgzhang  http://cgzhang.javaeye.com  我要评论(0)
  • 摘要:$attribute=Mage::getModel('eav/config')->getAttribute('catalog_product','attribute_id');foreach($attribute->getSource()->getAllOptions(true,true)as$option){attrubuteArray[$option['value']]=$option['label'];}
  • 标签: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'];
}
发表评论
用户名: 匿名