Search code examples
phpmagento

Get all site product ID in magento


Now, i want to get all product ID of my site. IS there a simple way to get all product ID in my site of magento,


Solution

  • foreach(Mage::getModel('catalog/product')->getCollection() as $product)
    {
        var_dump($product->getId());
    }