本文整理汇总了PHP中Zend\Cache\Storage\StorageInterface::getMetadatas方法的典型用法代码示例。如果您正苦于以下问题:PHP StorageInterface::getMetadatas方法的具体用法?PHP StorageInterface::getMetadatas怎么用?PHP StorageInterface::getMetadatas使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend\Cache\Storage\StorageInterface
的用法示例。
在下文中一共展示了StorageInterface::getMetadatas方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: delegateGetMetadatas
/**
* @test
*/
public function delegateGetMetadatas()
{
$keys = [];
$values = [];
$this->storage->getMetadatas($keys)->willReturn($values);
$return = $this->cache->getMetadatas($keys);
$this->assertSame($values, $return);
}
示例2: testGetMetadatasReturnsEmptyArrayIfNonReadable
public function testGetMetadatasReturnsEmptyArrayIfNonReadable()
{
$this->_options->setReadable(false);
$this->assertTrue($this->_storage->setItem('key', 'value'));
$this->assertEquals(array(), $this->_storage->getMetadatas(array('key')));
}
示例3: getMetadatas
public function getMetadatas(array $keys)
{
return $this->storage->getMetadatas($keys);
}