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


PHP ResponseHeaderBag::set方法代碼示例

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


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

示例1: it_should_prepare_the_bag

 public function it_should_prepare_the_bag(Request $request, Response $response, ResponseHeaderBag $bag)
 {
     $response->headers = $bag;
     $bag->set("content-type", "application/json")->shouldBeCalledTimes(1);
     $this->test($request, $response);
     $this->getBag()->shouldBe(["test" => "Ok"]);
 }
開發者ID:wdalmut,項目名稱:frankie,代碼行數:7,代碼來源:IndexSpec.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: 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

示例4: function

 function it_should_set_response_time_to_response_header(Request $req, Response $res, ResponseHeaderBag $bag)
 {
     $res->headers = $bag;
     static::$timer->getStartMilliseconds()->willReturn(1426009224940.0);
     static::$timer->getEndMilliseconds()->willReturn(1426009226260.0);
     $bag->set('X-Response-Time', '1320ms', false)->shouldBeCalled();
     $next = function ($req) use($res) {
         return $res->getWrappedObject();
     };
     $this->handle($req, $next)->shouldReturn($res);
 }
開發者ID:lara-middleware,項目名稱:response-time,代碼行數:11,代碼來源:ResponseTimeSpec.php

示例5: function

 function it_should_set_response_time_to_response_header(Request $req, Response $res, ResponseHeaderBag $bag)
 {
     $res->headers = $bag;
     $uuid = '25769c6c-d34d-4bfe-ba98-e0ee856f3e7a';
     static::$generator->getV4Uuid()->willReturn($uuid);
     $req->merge(['request-id' => $uuid])->shouldBeCalled();
     $bag->set('Request-Id', $uuid, false)->shouldBeCalled();
     $next = function ($req) use($res) {
         return $res->getWrappedObject();
     };
     $this->handle($req, $next)->shouldReturn($res);
 }
開發者ID:lara-middleware,項目名稱:request-id,代碼行數:12,代碼來源:RequestIdSpec.php

示例6: setVary

 /**
  * Sets the Vary header.
  *
  * @param string|array $headers
  * @param bool         $replace Whether to replace the actual value of not (true by default)
  *
  * @return Response
  *
  * @api
  */
 public function setVary($headers, $replace = true)
 {
     $this->headers->set('Vary', $headers, $replace);
     return $this;
 }
開發者ID:mitap45,項目名稱:Daily,代碼行數:15,代碼來源:Response.php

示例7: testToStringDoesntMessUpHeaders

 public function testToStringDoesntMessUpHeaders()
 {
     $headers = new ResponseHeaderBag();
     $headers->set('Location', 'http://www.symfony.com');
     $headers->set('Content-type', 'text/html');
     (string) $headers;
     $allHeaders = $headers->allPreserveCase();
     $this->assertEquals(array('http://www.symfony.com'), $allHeaders['Location']);
     $this->assertEquals(array('text/html'), $allHeaders['Content-type']);
 }
開發者ID:hilmysyarif,項目名稱:sisfito,代碼行數:10,代碼來源:ResponseHeaderBagTest.php

示例8: setPageDataIfExists

 /**
  * @param array             $app
  * @param ResponseHeaderBag $headers
  */
 private function setPageDataIfExists(array $app, ResponseHeaderBag $headers)
 {
     if (isset($app[Headers::PAGE_DATA_KEY])) {
         $headers->set(Headers::PAGE_DATA_HEADER, json_encode(Escaper::escape($app[Headers::PAGE_DATA_KEY])));
     }
 }
開發者ID:supportyard,項目名稱:framework-bundle,代碼行數:10,代碼來源:ResponseDecoratorListener.php

示例9: setHeader

 /**
  * Sets headers to apply to all responses being sent
  *
  * @param string $name    Header name
  * @param string $value   Header value
  * @param bool   $replace Replace existing headers
  * @return void
  */
 public function setHeader($name, $value, $replace = true)
 {
     $this->headers->set($name, $value, $replace);
 }
開發者ID:elgg,項目名稱:elgg,代碼行數:12,代碼來源:ResponseFactory.php

示例10: getHttpHeaders

 protected function getHttpHeaders(Request $httpRequest, $result)
 {
     $headers = new ResponseHeaderBag();
     $headers->set("Content-Type", $this->getMimeType() . "; charset=utf-8");
     return $headers;
 }
開發者ID:agitation,項目名稱:api-bundle,代碼行數:6,代碼來源:AbstractFormatter.php


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