我需要一些编码方面的帮助.我需要获得所有制造商的清单及其相应的magento ID.那可能吗?请帮忙.谢谢.我尝试了一些mod但只得到一个或另一个.如果可能的话,请帮助最后一件事.我提前谢谢你
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'manufacturer');
foreach ( $attribute->getSource()->getAllOptions(true, true) as $option){
$attributeArray[$option['value']] = $option['label'];
}
foreach($attributeArray as $key=>$val){
echo $val;
}
Run Code Online (Sandbox Code Playgroud)