本文整理汇总了PHP中WindowsAzure\Common\Internal\Utilities::arrayKeyExistsInsensitive方法的典型用法代码示例。如果您正苦于以下问题:PHP Utilities::arrayKeyExistsInsensitive方法的具体用法?PHP Utilities::arrayKeyExistsInsensitive怎么用?PHP Utilities::arrayKeyExistsInsensitive使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WindowsAzure\Common\Internal\Utilities
的用法示例。
在下文中一共展示了Utilities::arrayKeyExistsInsensitive方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: create
/**
* Creates CopyBlobResult object from the response of the copy blob request.
*
* @param array $headers The HTTP response headers in array representation.
*
* @return CopyBlobResult
*/
public static function create($headers)
{
$result = new CopyBlobResult();
$result->setETag(Utilities::tryGetValueInsensitive(Resources::ETAG, $headers));
if (Utilities::arrayKeyExistsInsensitive(Resources::LAST_MODIFIED, $headers)) {
$lastModified = Utilities::tryGetValueInsensitive(Resources::LAST_MODIFIED, $headers);
$result->setLastModified(Utilities::rfc1123ToDateTime($lastModified));
}
return $result;
}
示例2: testArrayKeyExistsInsensitive
/**
* @covers WindowsAzure\Common\Internal\Utilities::inArrayInsensitive
*/
public function testArrayKeyExistsInsensitive()
{
// Setup
$key = 'CaseInsensitiVe';
$array = array('caSeinSenSitivE' => '123');
// Test
$actual = Utilities::arrayKeyExistsInsensitive($key, $array);
// Assert
$this->assertTrue($actual);
}
示例3: testSetBlobMetadataWorks
/**
* @covers WindowsAzure\Blob\BlobRestProxy::createPageBlob
* @covers WindowsAzure\Blob\BlobRestProxy::getBlobProperties
* @covers WindowsAzure\Blob\BlobRestProxy::setBlobMetadata
*/
public function testSetBlobMetadataWorks()
{
// Act
$container = self::$_test_container_for_blobs;
$blob = 'test11';
$metadata = array('test' => 'bar', 'blah' => 'bleah');
$this->restProxy->createPageBlob($container, $blob, 4096);
$result = $this->restProxy->setBlobMetadata($container, $blob, $metadata);
$props = $this->restProxy->getBlobProperties($container, $blob);
// Assert
$this->assertNotNull($result, '$result');
$this->assertNotNull($result->getETag(), '$result->getETag()');
$this->assertNotNull($result->getLastModified(), '$result->getLastModified()');
$this->assertNotNull($props, '$props');
$this->assertNotNull($props->getMetadata(), '$props->getMetadata()');
$this->assertEquals(2, count($props->getMetadata()), 'count($props->getMetadata())');
$this->assertTrue(Utilities::arrayKeyExistsInsensitive('test', $props->getMetadata()), 'Utilities::arrayKeyExistsInsensitive(\'test\', $props->getMetadata())');
$this->assertTrue(!(array_search('bar', $props->getMetadata()) === FALSE), '!(array_search(\'bar\', $props->getMetadata()) === FALSE)');
$this->assertTrue(Utilities::arrayKeyExistsInsensitive('blah', $props->getMetadata()), 'Utilities::arrayKeyExistsInsensitive(\'blah\', $props->getMetadata())');
$this->assertTrue(!(array_search('bleah', $props->getMetadata()) === FALSE), '!(array_search(\'bleah\', $props->getMetadata()) === FALSE)');
}