当前位置:Gxlcms > PHP教程 > 修改header里面的Connection为close解决方法

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

时间:2021-07-01 10:21:17 帮助过:173人阅读

修改header里面的Connection为close
怎么在不改变服务器配置的情况下用php将header里Connection设置为close啊
而且我用header(“Connection:close”)不管用啊

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

人气教程排行