设定状态表头
在 Fuel 里,状态表头被视为「特别」的表头,你想保留其他表头的话别设定它, 状态表头在控制器里设定如下:
$response = new Response($body, 404);
设定状态表头和其他表头
$headers = array (
'Cache-Control' => 'no-cache, no-store, max-age=0, must-revalidate',
'Expires' => 'Mon, 26 Jul 1997 05:00:00 GMT',
'Pragma' => 'no-cache',
);
$response = new Response($body, 404, $headers);