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


PHP DataQuery::disjunctiveGroup方法代码示例

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


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

示例1: testSubgroupHandoff

 public function testSubgroupHandoff()
 {
     $dq = new DataQuery('DataQueryTest_A');
     $subDq = $dq->disjunctiveGroup();
     $orgDq = clone $dq;
     $subDq->sort('"DataQueryTest_A"."Name"');
     $orgDq->sort('"DataQueryTest_A"."Name"');
     $this->assertEquals($dq->sql(), $orgDq->sql());
     $subDq->limit(5, 7);
     $orgDq->limit(5, 7);
     $this->assertEquals($dq->sql(), $orgDq->sql());
 }
开发者ID:fanggu,项目名称:loveyourwater_ss_v3.1.6,代码行数:12,代码来源:DataQueryTest.php

示例2: apply

 /**
  * @param DataQuery $query
  *
  * @return $this|DataQuery
  */
 public function apply(DataQuery $query)
 {
     $orGroup = $query->disjunctiveGroup();
     $orGroup = parent::apply($orGroup);
     if (count($this->subfilters) > 0) {
         foreach ($this->subfilters as $f) {
             $orGroup = $f->apply($orGroup);
         }
     }
     // The original query will have been affected by the things added to $orGroup above
     // but returning this instead of that will cause new filters to be added as AND
     return $query;
 }
开发者ID:burnbright,项目名称:silverstripe-shop,代码行数:18,代码来源:MultiFieldPartialMatchFilter.php


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