Jump to content

Alternative for count() function?


vangilsweb

Recommended Posts

Dear phpfreaks-members,

 

We have a webshop. For this webshop we use Magento. On our website we want to display a list with all our active manufacturers (manufacturers that contain products).

 

1. we put all our products in de variable $products

2. we apply a filter on this variable to select only the products from a specific manufacturer

3. we count the number of products that are in the variable $products

4. if the variable contains 1 or more products, we display the manufacturer

 

But loading this page takes a very long time, because of the counting (count()-function) of all the manufacturers.

Is there an alternative for this code? Because we only want to know if the number of products is not 0. The exact number of products we don't have to know.

 

<?php
$products = Mage::getModel('catalog/product')->getCollection();
$products->addAttributeToFilter('manufacturer',$item->getOptionId());
?>

<?php if ($products->count()>0):?>
[code for showing manufacturer]
?>

 

Thank you in advance!!!

Link to comment
https://forums.phpfreaks.com/topic/244999-alternative-for-count-function/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.