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


PHP Collection::keys方法代码示例

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


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

示例1: test_getting_array_of_keys

 public function test_getting_array_of_keys()
 {
     $coll = new Collection();
     $coll->addItem('Test Item', 1);
     $coll->addItem('Test Item', 2);
     $actual = $coll->keys();
     $expected = array(1, 2);
     $this->assertEquals($expected, $actual);
 }
开发者ID:miloszmd,项目名称:uniAssignment,代码行数:9,代码来源:CollectionTest.php

示例2: __construct

 public function __construct(Collection $collection)
 {
     $this->collection = $collection;
     $this->keys = $collection->keys();
 }
开发者ID:LartTyler,项目名称:Link,代码行数:5,代码来源:CollectionIterator.php

示例3: testKeys

 public function testKeys()
 {
     $collection = new Collection(['1', 'b' => '2']);
     $this->assertSame([0, 'b'], $collection->keys());
 }
开发者ID:Raphhh,项目名称:trex-collection,代码行数:5,代码来源:CollectionKeyAccessorTraitTest.php

示例4: __construct

 /**
  *
  * @param Collection $collection
  */
 public function __construct(JsonManager $collection)
 {
     $this->collection = $collection;
     $this->keys = $this->collection->keys();
 }
开发者ID:beeflow,项目名称:jsonmanager,代码行数:9,代码来源:JsonIterator.php


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