我正在尝试使用 codeigniter框架设置自己的自定义请求标头。
我正在使用$this->input->request_header();
函数来查看所有请求的标头。
答案 0 :(得分:-1)
您可以使用output
类。请注意,output
类与其他类/库不同,是由系统自动加载的,因此您不必这样做。
这些是设置不同标题的示例(来自CodeIgniter的website )
$this->output->set_header('HTTP/1.0 200 OK');
$this->output->set_header('HTTP/1.1 200 OK');
$this->output->set_header('Last-Modified: '.gmdate('D, d M Y H:i:s', $last_update).' GMT');
$this->output->set_header('Cache-Control: no-store, no-cache, must-revalidate');
$this->output->set_header('Cache-Control: post-check=0, pre-check=0');
$this->output->set_header('Pragma: no-cache');