magento
コレクション
サーチ…
製品コレクション
$productCollection = Mage::getModel('catalog/product')->getCollection();
特定の属性の選択
$productCollection->addAttributeToSelect(array('name', 'product_url', 'small_image'));
すべての属性の選択
$productCollection->addAttributeToSelect('*');
コレクションにフィルタを追加する
$productCollection->addFieldToFilter('is_active', 1);
注文を設定する
$productCollection->setOrder('id', 'ASC');
制限を設定する
$productCollection->setPageSize(10);
現在のページを設定する
$productCollection->setCurPage($page);
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow