当前位置: 代码迷 >> PHP >> 修改header里面的Connection为close解决方法
  详细解决方案

修改header里面的Connection为close解决方法

热度:315   发布时间:2012-04-06 12:22:24.0
修改header里面的Connection为close
怎么在不改变服务器配置的情况下用php将header里Connection设置为close啊
而且我用header(“Connection:close”)不管用啊

------解决方案--------------------
<?php
header("Content-Length: 0");
header("Connection: close");
flush();
?>
  相关解决方案