如果PHP发送两个头文件,哪个有效?

时间:2015-10-27 17:35:57

标签: php header cache-control

如果我有两个标题:

header("Cache-Control: public");
header("Cache-Control: private");

哪个有效(第一个或最后一个)?

1 个答案:

答案 0 :(得分:1)

在此脚本上将使用第二个标题():

<?php
    header('Location: http://google.de');
    header('Location: http://stackoverflow.com');

在您的脚本上将使用第二个标题():

<?php
    header("Cache-Control: public");
    header("Cache-Control: private");

如果多次定义标题,将使用最后一个标题!