How to check if Headers already been sent in PHP(如何检查标头是否已在 PHP 中发送)
问题描述
我想我们大多数人都知道 PHP 中臭名昭著的标头已发送"错误.我可以检查一下是否已经发送了标头吗?
I think most of us know about the infamous "Headers already sent" error in PHP. Can I check someway if headers already have been sent?
在全力以赴尝试设置一些 SESSION 数据或类似数据之前,这样做真的很方便.
It would be really handy to do such, before going all out with trying to set some SESSION data or similar.
谢谢!
推荐答案
PHP有一个函数 headers_sent()
允许您在采取任何操作之前检查标头是否已发送出去.以下是在代码中使用该函数的方法:
PHP has a function headers_sent()
which allows you to check if the headers are already sent out before you take any action. Here’s how you could use the function in your code:
if(headers_sent())
{ //if headers already sent out print some message.
echo "Please go to yahoo.com";
}
else{
//send the user automatically to test.php
header('Location: http://yahoo.com');
exit;
}
这篇关于如何检查标头是否已在 PHP 中发送的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何检查标头是否已在 PHP 中发送
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01