如何在codeigniter中设置自定义标头?

时间:2018-11-22 11:37:28

标签: php codeigniter-3

我正在尝试使用 codeigniter框架设置自己的自定义请求标头。

我正在使用$this->input->request_header();函数来查看所有请求的标头。

1 个答案:

答案 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');