本文整理汇总了PHP中Symfony\Component\HttpFoundation\Response::header方法的典型用法代码示例。如果您正苦于以下问题:PHP Response::header方法的具体用法?PHP Response::header怎么用?PHP Response::header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Symfony\Component\HttpFoundation\Response
的用法示例。
在下文中一共展示了Response::header方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: applyHeaders
/**
* Apply JSON API header to the response.
*
* @param Symfony\Component\HttpFoundation\Response $response [description]
* @return Symfony\Component\HttpFoundation\Response
*/
protected function applyHeaders(Response $response)
{
return $response->header('Content-Type', self::CONTENT_TYPE, true);
}
示例2: addHeader
/**
* Adds the JSON-API Content Type header to the current Response
*
* @param Response $response
* @return mixed
*/
protected function addHeader(Response $response)
{
return $response->header('Content-Type', 'application/vnd.api+json', true);
}
示例3: processResponse
protected function processResponse(ProfileRequest $profiler, Response $response)
{
$profiler->recordQueries();
Cache::put('profiler-request-' . $profiler->getId(), $profiler->toString(), 2);
return $response->header('X-Request-Id', $profiler->getId());
}