2013-07-22 108 views

回答

0

您可以通過下面的代碼獲得產品集合:

$product = Mage::getModel('catalog/product'); 
$productCollection = $product->getCollection() 
->addAttributeToSelect('*'); 


foreach ($productCollection as $_product) { 
    echo $_product->getName().'<br/>';   
} 

但對於您的要求,您可以從以下鏈接獲得的想法,可能是它的幫助你。 How do I get product category information using collections in Magento

0

Select entity_id from catalog_product_entity where entity_id not in (select distinct entity_id from catalog_category_product);

這會給你不屬於任何類別的所有產品的實體ID。

相關問題