當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ResponseHeaderBag::get方法代碼示例

本文整理匯總了PHP中Symfony\Component\HttpFoundation\ResponseHeaderBag::get方法的典型用法代碼示例。如果您正苦於以下問題:PHP ResponseHeaderBag::get方法的具體用法?PHP ResponseHeaderBag::get怎麽用?PHP ResponseHeaderBag::get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Symfony\Component\HttpFoundation\ResponseHeaderBag的用法示例。


在下文中一共展示了ResponseHeaderBag::get方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testReplaceWithRemove

 public function testReplaceWithRemove()
 {
     $bag = new ResponseHeaderBag(array());
     $this->assertEquals('no-cache', $bag->get('Cache-Control'));
     $this->assertTrue($bag->hasCacheControlDirective('no-cache'));
     $bag->remove('Cache-Control');
     $bag->replace(array());
     $this->assertEquals('no-cache', $bag->get('Cache-Control'));
     $this->assertTrue($bag->hasCacheControlDirective('no-cache'));
 }
開發者ID:joan16v,項目名稱:symfony2_test,代碼行數:10,代碼來源:ResponseHeaderBagTest.php

示例2: testCacheControlHeader

 public function testCacheControlHeader()
 {
     $bag = new ResponseHeaderBag(array());
     $this->assertEquals('no-cache', $bag->get('Cache-Control'));
     $this->assertTrue($bag->hasCacheControlDirective('no-cache'));
     $bag = new ResponseHeaderBag(array('Cache-Control' => 'public'));
     $this->assertEquals('public', $bag->get('Cache-Control'));
     $this->assertTrue($bag->hasCacheControlDirective('public'));
     $bag = new ResponseHeaderBag(array('ETag' => 'abcde'));
     $this->assertEquals('private, must-revalidate', $bag->get('Cache-Control'));
     $this->assertTrue($bag->hasCacheControlDirective('private'));
     $this->assertTrue($bag->hasCacheControlDirective('must-revalidate'));
     $this->assertFalse($bag->hasCacheControlDirective('max-age'));
     $bag = new ResponseHeaderBag(array('Expires' => 'Wed, 16 Feb 2011 14:17:43 GMT'));
     $this->assertEquals('private, must-revalidate', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('Expires' => 'Wed, 16 Feb 2011 14:17:43 GMT', 'Cache-Control' => 'max-age=3600'));
     $this->assertEquals('max-age=3600, private', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('Last-Modified' => 'abcde'));
     $this->assertEquals('private, must-revalidate', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('Etag' => 'abcde', 'Last-Modified' => 'abcde'));
     $this->assertEquals('private, must-revalidate', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('cache-control' => 'max-age=100'));
     $this->assertEquals('max-age=100, private', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('cache-control' => 's-maxage=100'));
     $this->assertEquals('s-maxage=100', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('cache-control' => 'private, max-age=100'));
     $this->assertEquals('max-age=100, private', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('cache-control' => 'public, max-age=100'));
     $this->assertEquals('max-age=100, public', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag();
     $bag->set('Last-Modified', 'abcde');
     $this->assertEquals('private, must-revalidate', $bag->get('Cache-Control'));
 }
開發者ID:nightchiller,項目名稱:symfony,代碼行數:33,代碼來源:ResponseHeaderBagTest.php

示例3: testCacheControlHeader

 public function testCacheControlHeader()
 {
     $bag = new ResponseHeaderBag(array(), 'response');
     $this->assertEquals('no-cache', $bag->get('Cache-Control'));
     $this->assertTrue($bag->hasCacheControlDirective('no-cache'));
     $bag = new ResponseHeaderBag(array('Cache-Control' => 'public'), 'response');
     $this->assertEquals('public', $bag->get('Cache-Control'));
     $this->assertTrue($bag->hasCacheControlDirective('public'));
     $bag = new ResponseHeaderBag(array('ETag' => 'abcde'), 'response');
     $this->assertEquals('private, max-age=0, must-revalidate', $bag->get('Cache-Control'));
     $this->assertTrue($bag->hasCacheControlDirective('private'));
     $this->assertTrue($bag->hasCacheControlDirective('must-revalidate'));
     $this->assertEquals(0, $bag->getCacheControlDirective('max-age'));
     $bag = new ResponseHeaderBag(array('Last-Modified' => 'abcde'), 'response');
     $this->assertEquals('private, max-age=0, must-revalidate', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('Etag' => 'abcde', 'Last-Modified' => 'abcde'), 'response');
     $this->assertEquals('private, max-age=0, must-revalidate', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('cache-control' => 'max-age=100'), 'response');
     $this->assertEquals('max-age=100, private', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('cache-control' => 's-maxage=100'), 'response');
     $this->assertEquals('s-maxage=100', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('cache-control' => 'private, max-age=100'), 'response');
     $this->assertEquals('max-age=100, private', $bag->get('Cache-Control'));
     $bag = new ResponseHeaderBag(array('cache-control' => 'public, max-age=100'), 'response');
     $this->assertEquals('max-age=100, public', $bag->get('Cache-Control'));
 }
開發者ID:notbrain,項目名稱:symfony,代碼行數:26,代碼來源:ResponseHeaderBagTest.php

示例4: testWhenOnFirstPageAndPartialRestSet_nextPageIsNotLinked

 public function testWhenOnFirstPageAndPartialRestSet_nextPageIsNotLinked()
 {
     $headers = new ResponseHeaderBag();
     $headerSetter = new PaginationHeaderSetter($headers);
     $headerSetter->setHeaders('http://localhost/test', new SimplePaginationInfo(1, 10), 9);
     $this->assertSame([], $headers->get('Link', null, false));
 }
開發者ID:JeroenDeDauw,項目名稱:QueryrAPI,代碼行數:7,代碼來源:PaginationHeaderSetterTest.php

示例5: ensureIEOverSSLCompatibility

 /**
  * Check if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9
  *
  * @link http://support.microsoft.com/kb/323308
  */
 protected function ensureIEOverSSLCompatibility(Request $request)
 {
     if (false !== stripos($this->headers->get('Content-Disposition'), 'attachment') && preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT'), $match) == 1 && true === $request->isSecure()) {
         if (intval(preg_replace("/(MSIE )(.*?);/", "\$2", $match[0])) < 9) {
             $this->headers->remove('Cache-Control');
         }
     }
 }
開發者ID:santiagosisul,項目名稱:curso-sf2,代碼行數:13,代碼來源:Response.php

示例6: fixContentType

 protected function fixContentType()
 {
     if (!$this->headers->has('Content-Type')) {
         $this->headers->set('Content-Type', 'text/html; charset=' . $this->charset);
     } elseif ('text/' === substr($this->headers->get('Content-Type'), 0, 5) && false === strpos($this->headers->get('Content-Type'), 'charset')) {
         // add the charset
         $this->headers->set('Content-Type', $this->headers->get('Content-Type') . '; charset=' . $this->charset);
     }
 }
開發者ID:NicolasBadey,項目名稱:symfony,代碼行數:9,代碼來源:Response.php

示例7: isRedirect

 /**
  * @param string $location
  *
  * @return Boolean
  *
  * @api
  */
 public function isRedirect($location = null)
 {
     return in_array($this->statusCode, array(201, 301, 302, 303, 307)) && (null === $location ?: $location == $this->headers->get('Location'));
 }
開發者ID:hykz,項目名稱:Depot,代碼行數:11,代碼來源:Response.php

示例8: isRedirected

 public function isRedirected($location)
 {
     return $this->isRedirect() && $location == $this->headers->get('Location');
 }
開發者ID:hellovic,項目名稱:symfony,代碼行數:4,代碼來源:Response.php

示例9: testCookiesWithSameNames

    public function testCookiesWithSameNames()
    {
        $bag = new ResponseHeaderBag();
        $bag->setCookie(new Cookie('foo', 'bar', 0, '/path/foo', 'foo.bar'));
        $bag->setCookie(new Cookie('foo', 'bar', 0, '/path/bar', 'foo.bar'));
        $bag->setCookie(new Cookie('foo', 'bar', 0, '/path/bar', 'bar.foo'));
        $bag->setCookie(new Cookie('foo', 'bar'));

        $this->assertCount(4, $bag->getCookies());
        $this->assertEquals('foo=bar; path=/path/foo; domain=foo.bar; httponly', $bag->get('set-cookie'));
        $this->assertEquals(array(
            'foo=bar; path=/path/foo; domain=foo.bar; httponly',
            'foo=bar; path=/path/bar; domain=foo.bar; httponly',
            'foo=bar; path=/path/bar; domain=bar.foo; httponly',
            'foo=bar; path=/; httponly',
        ), $bag->get('set-cookie', null, false));

        $this->assertSetCookieHeader('foo=bar; path=/path/foo; domain=foo.bar; httponly', $bag);
        $this->assertSetCookieHeader('foo=bar; path=/path/bar; domain=foo.bar; httponly', $bag);
        $this->assertSetCookieHeader('foo=bar; path=/path/bar; domain=bar.foo; httponly', $bag);
        $this->assertSetCookieHeader('foo=bar; path=/; httponly', $bag);

        $cookies = $bag->getCookies(ResponseHeaderBag::COOKIES_ARRAY);

        $this->assertTrue(isset($cookies['foo.bar']['/path/foo']['foo']));
        $this->assertTrue(isset($cookies['foo.bar']['/path/bar']['foo']));
        $this->assertTrue(isset($cookies['bar.foo']['/path/bar']['foo']));
        $this->assertTrue(isset($cookies['']['/']['foo']));
    }
開發者ID:symfony,項目名稱:symfony,代碼行數:29,代碼來源:ResponseHeaderBagTest.php


注:本文中的Symfony\Component\HttpFoundation\ResponseHeaderBag::get方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。