标头已发送警告使用Google Analytics实验代码时

时间:2013-04-01 03:26:03

标签: php google-analytics

我收到错误警告,标题已发送,

出于某种原因,它说输出是在谷歌实验的谷歌分析跟踪代码结束时开始的,

该文件的完整文件是这个

<!-- Google Analytics Content Experiment code -->
<script>function utmx_section(){}function utmx(){}(function(){var
k='62393235-4',d=document,l=d.location,c=d.cookie;
if(l.search.indexOf('utm_expid='+k)>0)return;
function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.
indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c.
length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write(
'<sc'+'ript src="'+'http'+(l.protocol=='https:'?'s://ssl':
'://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+
'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date().
valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+
'" type="text/javascript" charset="utf-8"><\/sc'+'ript>')})();
</script><script>utmx('url','A/B');</script>
<!-- End of Google Analytics Content Experiment code -->

为什么我会收到此错误?

2 个答案:

答案 0 :(得分:0)

标题上方不应有输出。造成这种情况的原因有很多。实例

<?php
header ("Location: test.php");
?>

这不会引发错误

<?php
 echo "blabla";
header ("Location: test.php");
?>

OR

<strong> test</strong>
<?php
header ("Location: test.php");
?>

以上将触发错误。

答案 1 :(得分:0)

使用ob_start();作为代码的第一行,以避免错误消息“已发送标题”。