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


PHP Collection::reject方法代码示例

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


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

示例1: testReject

 /**
  * Tests reject
  *
  * @return void
  */
 public function testReject()
 {
     $items = ['a' => 1, 'b' => 2, 'c' => 3];
     $collection = new Collection($items);
     $result = $collection->reject(function ($v, $k, $items) use($collection) {
         $this->assertSame($collection->getInnerIterator(), $items);
         return $v > 2;
     });
     $this->assertEquals(['a' => 1, 'b' => 2], iterator_to_array($result));
     $this->assertInstanceOf('Cake\\Collection\\Collection', $result);
 }
开发者ID:mhd94,项目名称:cakephp,代码行数:16,代码来源:CollectionTest.php

示例2: testReject

 /**
  * Tests reject
  *
  * @return void
  */
 public function testReject()
 {
     $this->assertFalse(defined('HHVM_VERSION'), 'Broken on HHVM');
     $items = ['a' => 1, 'b' => 2, 'c' => 3];
     $collection = new Collection($items);
     $result = $collection->reject(function ($v, $k, $items) use($collection) {
         $this->assertSame($collection, $items);
         return $v > 2;
     });
     $this->assertEquals(['a' => 1, 'b' => 2], iterator_to_array($result));
     $this->assertInstanceOf('\\Cake\\Collection\\Collection', $result);
 }
开发者ID:ripzappa0924,项目名称:carte0.0.1,代码行数:17,代码来源:CollectionTest.php

示例3: getOpponent

 public function getOpponent($user_id)
 {
     $gm_collection = new Collection($this->game_memberships);
     $opponents = $gm_collection->reject(function ($gm, $key) use($user_id) {
         return $user_id == $gm->member_id;
     });
     if (!($opponent = $opponents->first())) {
         return false;
     }
     if (!($opponent->member or $opponent->temp_member)) {
         return false;
     }
     return $opponent;
 }
开发者ID:abf6ug,项目名称:statbro,代码行数:14,代码来源:Game.php


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