当前位置: 首页>>代码示例>>PHP>>正文


PHP Select::reset方法代码示例

本文整理汇总了PHP中Magento\Framework\DB\Select::reset方法的典型用法代码示例。如果您正苦于以下问题:PHP Select::reset方法的具体用法?PHP Select::reset怎么用?PHP Select::reset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Magento\Framework\DB\Select的用法示例。


在下文中一共展示了Select::reset方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: reset

 /**
  * Resets select object
  *
  * @param null $part
  * @return $this
  */
 public function reset($part = null)
 {
     if ($part === self::COLUMNS || $part === null) {
         $this->outfile = false;
     }
     return parent::reset($part);
 }
开发者ID:EcomDev,项目名称:mysql-performance-benchmark,代码行数:13,代码来源:Select.php

示例2: getProductCountSelect

 /**
  * Retrieve product count select for categories
  *
  * @return \Magento\Framework\DB\Select
  */
 public function getProductCountSelect()
 {
     if ($this->_productCountSelect === null) {
         $this->_productCountSelect = clone $this->getSelect();
         $this->_productCountSelect->reset(\Magento\Framework\DB\Select::COLUMNS)->reset(\Magento\Framework\DB\Select::GROUP)->reset(\Magento\Framework\DB\Select::ORDER)->distinct(false)->join(['count_table' => $this->getTable('catalog_category_product_index')], 'count_table.product_id = e.entity_id', ['count_table.category_id', 'product_count' => new \Zend_Db_Expr('COUNT(DISTINCT count_table.product_id)')])->where('count_table.store_id = ?', $this->getStoreId())->group('count_table.category_id');
     }
     return $this->_productCountSelect;
 }
开发者ID:Doability,项目名称:magento2dev,代码行数:13,代码来源:Collection.php

示例3: exists

 /**
  * Add EXISTS clause
  *
  * @param  Select $select
  * @param  string           $joinCondition
  * @param   bool            $isExists
  * @return $this
  */
 public function exists($select, $joinCondition, $isExists = true)
 {
     if ($isExists) {
         $exists = 'EXISTS (%s)';
     } else {
         $exists = 'NOT EXISTS (%s)';
     }
     $select->reset(self::COLUMNS)->columns([new \Zend_Db_Expr('1')])->where($joinCondition);
     $exists = sprintf($exists, $select->assemble());
     $this->where($exists);
     return $this;
 }
开发者ID:tingyeeh,项目名称:magento2,代码行数:20,代码来源:Select.php

示例4: _prepareHaving

 /**
  * Prepare and returns having array
  *
  * @param \Magento\Framework\DB\Select $select
  * @param bool $autoReset
  * @return array
  * @throws \Zend_Db_Exception
  */
 protected function _prepareHaving(\Magento\Framework\DB\Select $select, $autoReset = false)
 {
     $selectHavings = $select->getPart(\Zend_Db_Select::HAVING);
     if (!$selectHavings) {
         return [];
     }
     $havings = [];
     $columns = $select->getPart(\Zend_Db_Select::COLUMNS);
     foreach ($columns as $columnEntry) {
         $correlationName = (string) $columnEntry[1];
         $column = $columnEntry[2];
         foreach ($selectHavings as $having) {
             /**
              * Looking for column expression in the having clause
              */
             if (strpos($having, $correlationName) !== false) {
                 if (is_string($column)) {
                     /**
                      * Replace column expression to column alias in having clause
                      */
                     $havings[] = str_replace($correlationName, $column, $having);
                 } else {
                     throw new \Zend_Db_Exception(sprintf("Can't prepare expression without column alias: '%s'", $correlationName));
                 }
             }
         }
     }
     if ($autoReset) {
         $select->reset(\Zend_Db_Select::HAVING);
     }
     return $havings;
 }
开发者ID:shabbirvividads,项目名称:magento2,代码行数:40,代码来源:Helper.php


注:本文中的Magento\Framework\DB\Select::reset方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。