当前位置: 首页>>代码示例>>PHP>>正文


PHP Response::getLastModified方法代码示例

本文整理汇总了PHP中Symfony\Component\HttpFoundation\Response::getLastModified方法的典型用法代码示例。如果您正苦于以下问题:PHP Response::getLastModified方法的具体用法?PHP Response::getLastModified怎么用?PHP Response::getLastModified使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Symfony\Component\HttpFoundation\Response的用法示例。


在下文中一共展示了Response::getLastModified方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getLastModified

 /**
  * @return \DateTime
  */
 protected function getLastModified()
 {
     if ($this->response === null) {
         return null;
     }
     return $this->response->getLastModified();
 }
开发者ID:ndrx-io,项目名称:profiler,代码行数:10,代码来源:Http.php

示例2: hash

 /**
  * @param Response $response
  *
  * @return string
  */
 public function hash(Response $response)
 {
     $suffix = '';
     // add cookies to ETag
     if ($this->request_stack->getMasterRequest()) {
         $suffix = self::ETAG_SEPARATOR . http_build_query($this->request_stack->getMasterRequest()->cookies->all());
     }
     return hash($this->algorithm, $response->getLastModified()->format(\DateTime::ISO8601) . $suffix);
 }
开发者ID:anime-db,项目名称:cache-time-keeper-bundle,代码行数:14,代码来源:EtagHasher.php

示例3: logResponse

 protected function logResponse(Response $response, Request $request)
 {
     if ($response->getStatusCode() >= 500) {
         $color = LogLevel::ERROR;
     } elseif ($response->getStatusCode() >= 400) {
         $color = LogLevel::WARNING;
     } elseif ($response->getStatusCode() >= 300) {
         $color = LogLevel::NOTICE;
     } elseif ($response->getStatusCode() >= 200) {
         $color = LogLevel::INFO;
     } else {
         $color = LogLevel::INFO;
     }
     $msg = 'Response {response_status_code} for "{request_method} {request_uri}"';
     $context = array('request_method' => $request->getMethod(), 'request_uri' => $request->getRequestUri(), 'response_status_code' => $response->getStatusCode(), 'response_charset' => $response->getCharset(), 'response_date' => $response->getDate(), 'response_etag' => $response->getEtag(), 'response_expires' => $response->getExpires(), 'response_last_modified' => $response->getLastModified(), 'response_max_age' => $response->getMaxAge(), 'response_protocol_version' => $response->getProtocolVersion(), 'response_ttl' => $response->getTtl(), 'response_vary' => $response->getVary());
     $this->logger->log($color, $msg, $context);
 }
开发者ID:caxy,项目名称:drupal-console-logging-middleware,代码行数:17,代码来源:RequestLoggingMiddleware.php

示例4: testSetLastModified

 public function testSetLastModified()
 {
     $response = new Response();
     $response->setLastModified(new \DateTime());
     $this->assertNotNull($response->getLastModified());
     $response->setLastModified(null);
     $this->assertNull($response->getLastModified());
 }
开发者ID:BozzaCoon,项目名称:SPHERE-Framework,代码行数:8,代码来源:ResponseTest.php

示例5: createContext

 /**
  * @param Response $response
  * @param Request  $request
  *
  * @return array
  */
 protected function createContext(Response $response, Request $request)
 {
     $context = array('response_status_code' => $response->getStatusCode(), 'response_charset' => $response->getCharset(), 'response_date' => $response->getDate(), 'response_etag' => $response->getEtag(), 'response_expires' => $response->getExpires(), 'response_last_modified' => $response->getLastModified(), 'response_max_age' => $response->getMaxAge(), 'response_protocol_version' => $response->getProtocolVersion(), 'response_ttl' => $response->getTtl(), 'response_vary' => $response->getVary(), 'request_method' => $request->getMethod(), 'request_uri' => $request->getRequestUri(), 'request_route' => $request->attributes->get('_route'), 'response_time' => $this->getTime($request), 'response_memory' => $this->getMemory());
     return $context;
 }
开发者ID:Hexanet,项目名称:MonologExtraBundle,代码行数:11,代码来源:ResponseLogger.php


注:本文中的Symfony\Component\HttpFoundation\Response::getLastModified方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。