php 产品数量加载产品集合加载产品集合

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 产品数量加载产品集合加载产品集合相关的知识,希望对你有一定的参考价值。

<?php 
    $_productCollection = $this->getLayout()->getBlockSingleton('catalog/product_list')->getLoadedProductCollection();
    if( $count = $_productCollection->getSize() )
    {
       echo $count; 
    }
?> 

---------------------------------

<?php $attributes = Mage::getResourceModel('eav/entity_attribute_collection')
            ->setEntityTypeFilter($product->getResource()->getTypeId())
            ->addFieldToFilter('attribute_code', 'city ') 
            ->load(false);     
        $attribute = $attributes->getFirstItem()->setEntity($product->getResource());                 
        $city = $attribute->getSource()->getAllOptions(false);                            
?>
<div class="city-choose">
   <form action="#">
     <fieldset>
       <strong class="title"><img src="<?php echo $this->getSkinUrl();?>/images/text-more-off.png" alt="more off getting off in" /></strong>
       <div class="form">
         <label for="city">Choose another city</label>
         <select class="city-select" id="city" ONCHANGE="location = this.options[this.selectedIndex].value;" >
           <?php foreach ($city as $_category):?>
           
               <option <?php if ($_GET['city'] == $_category['value']):?>selected<?php endif;?>
               VALUE="<?php print Mage::getUrl('*/*/*', array (
                                                   '_current' => 1,
                                                   '_escape' => 1,
                                                   '_use_rewrite' => 1,
                                                   '_query' => array
                                                       (
                                                           'city' => $_category['value']
                                                       )
                                               ));?>
               "><?php print $_category['label'];?></option>
           
           <?php endforeach;?>
         </select>
       </div>
     </fieldset>
   </form>
 </div>

以上是关于php 产品数量加载产品集合加载产品集合的主要内容,如果未能解决你的问题,请参考以下文章

重新加载数据后根据要求更新后未显示 uicollectionview 单元格

Laravel/Php - 在急切加载关闭中修改集合?

Magento:自定义集合中缺少分页

php 类别集合产品集合产品列表

如何将产品媒体库与收藏一起加载?

Magento 获取未加载所有属性的相关产品