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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.