本文整理汇总了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);
}
示例2: __construct
public function __construct(Collection $collection)
{
$this->collection = $collection;
$this->keys = $collection->keys();
}
示例3: testKeys
public function testKeys()
{
$collection = new Collection(['1', 'b' => '2']);
$this->assertSame([0, 'b'], $collection->keys());
}
示例4: __construct
/**
*
* @param Collection $collection
*/
public function __construct(JsonManager $collection)
{
$this->collection = $collection;
$this->keys = $this->collection->keys();
}