本文整理匯總了PHP中Illuminate\Http\Response::setCharset方法的典型用法代碼示例。如果您正苦於以下問題:PHP Response::setCharset方法的具體用法?PHP Response::setCharset怎麽用?PHP Response::setCharset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Illuminate\Http\Response
的用法示例。
在下文中一共展示了Response::setCharset方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getResponse
/**
* Get a valid response back
*
* @param String $type
* @param String $origin
* @return Response The response
*/
private static function getResponse($type = 'application/javascript', $origin = '*')
{
$response = new Response();
$date = new DateTime();
$response->setCharset('UTF-8')->setDate($date)->setEtag(hash('sha512', microtime() . rand()))->setExpires($date)->setLastModified($date)->setMaxAge(0)->setPrivate()->header('Pragma', 'no-cache')->header('Access-Control-Allow-Origin', $origin ? $origin : '*')->header('Access-Control-Allow-Methods', 'POST, GET')->header('Access-Control-Allow-Credentials', 'true')->header('Content-Type', ($type ? $type : 'application/javascript') . '; charset=utf-8')->header('X-Frame-Options', 'deny')->setContent(json_encode(['error' => 1]));
return $response;
}