检索没有产品的默认产品图片 - Magento

时间:2012-05-21 20:48:25

标签: magento

我想检索Magento中的默认产品缩略图,将其应用于产品以外的其他产品,因此我无法访问$ product。会不可能?

谢谢, Krt_Malta

1 个答案:

答案 0 :(得分:0)

未经测试,但这应该有效:

/**
 * Get the resource model
 */
$resource = Mage::getSingleton('core/resource');

/**
 * Retrieve the read connection
 */
$readConnection = $resource->getConnection('core_read');

$query = 'SELECT thumbnail FROM ' . $resource->getTableName('catalog/product_flat') . ' WHERE sku = "(insert your product SKU here)"'; // Insert SKU here

/**
 * Execute the query and store the results in $results
 */
$results = $readConnection->fetchAll($query);

/**
 * Print out the results
 */
echo sprintf('<pre>%s</pre>' print_r($results, true));