Magento get all products

后端 未结 6 846
故里飘歌
故里飘歌 2021-02-05 21:28

I am trying to get the entire magento product collection, without any filters or restrictions, but I fail to get all products.

I\'ve tried various methods already, but t

6条回答
  •  深忆病人
    2021-02-05 22:11

    And something like this:

    $products = Mage::getModel('catalog/product')->getCollection();
    foreach($products as $prod) {
    $product = Mage::getModel('catalog/product')->load($prod->getId());
    }
    

    With this method I get more than 500 but all my product...

提交回复
热议问题