當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Varien_Data_Collection::getItemsByColumnValue方法代碼示例

本文整理匯總了PHP中Varien_Data_Collection::getItemsByColumnValue方法的典型用法代碼示例。如果您正苦於以下問題:PHP Varien_Data_Collection::getItemsByColumnValue方法的具體用法?PHP Varien_Data_Collection::getItemsByColumnValue怎麽用?PHP Varien_Data_Collection::getItemsByColumnValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Varien_Data_Collection的用法示例。


在下文中一共展示了Varien_Data_Collection::getItemsByColumnValue方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: collectionsAction

 public function collectionsAction()
 {
     $thing_1 = new Varien_Object();
     $thing_1->setName('david');
     $thing_1->setAge('27');
     $thing_1->setLastName('Smith');
     $thing_2 = new Varien_Object();
     $thing_2->setName('Jane');
     $thing_2->setAge(12);
     $thing_3 = new Varien_Object();
     $thing_3->setName('Spot');
     $thing_3->setLastName('The Dog');
     $thing_3->setAge(7);
     //var_dump($thing_3->getData());
     //var_dump($thing_3["last_name"]);
     /*Definiremos ahora una serie de collections*/
     $collection_of_things = new Varien_Data_Collection();
     $collection_of_things->addItem($thing_1)->addItem($thing_2)->addItem($thing_3);
     foreach ($collection_of_things as $thing) {
         var_dump($thing->getData());
     }
     echo "<br><br>";
     echo "obteniendo el primer y último elemento";
     echo "<br><br>";
     var_dump($collection_of_things->getFirstItem());
     var_dump($collection_of_things->getLastItem()->getData());
     echo "<br><br>";
     echo "Ahora como xml";
     var_dump($collection_of_things->toXml());
     echo '<br><br>';
     echo 'ahora obtenemos solo las columnas identificadas como name';
     echo '<br><br>';
     var_dump($collection_of_things->getColumnValues('name'));
     echo '<br><br>';
     echo 'El equipo de Magento nos permite realizar filtrados, ejemplo para el nombre david';
     echo '<br/><br>';
     var_dump($collection_of_things->getItemsByColumnValue('name', 'Spot'));
 }
開發者ID:votanlean,項目名稱:Magento-Pruebas,代碼行數:38,代碼來源:[index]+IndexController.php

示例2: _getAllUsedProductSkus

 /**
  * Get an array of skus for all simple products that should be linked to a
  * configurable product included in the collection of products to be cleaned.
  * @param  Varien_Data_Collection $productCollection
  * @return array
  */
 protected function _getAllUsedProductSkus(Varien_Data_Collection $productCollection)
 {
     $configSkus = array_map(function ($product) {
         return $product->getSku();
     }, $productCollection->getItemsByColumnValue('type_id', Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE));
     return Mage::getModel('catalog/product')->getCollection()->addAttributeToFilter('style_id', array('in' => $configSkus))->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_SIMPLE)->addAttributeToSelect('sku')->getColumnValues('sku');
 }
開發者ID:ryaan-anthony,項目名稱:magento-retail-order-management,代碼行數:13,代碼來源:Cleaner.php


注:本文中的Varien_Data_Collection::getItemsByColumnValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。