需要更新产品缩略图,小图片和基本图片 编程
为此我使用以下代码
$collection1->addImageToMediaGallery($importDir,$mediaArray,false);
//$collection1->setStoreId(0);
$collection1->save();
if (isset($mediaGallery['images'])){
//loop through the images
foreach ($mediaGallery['images'] as $image){
//set the first image as the base image
Mage::getSingleton('catalog/product_action')->updateAttributes(array($collection1->getId()), array('image'=>$image['file'],'thumbnail'=>$image['file'],'small_image'=>$image['file']), 0);
//stop
break;
}
}
使用此代码
图片添加到图库
但我需要将最新图像设置为图像和基本图像
。请建议我如何实现这一点谢谢
答案 0 :(得分:1)