gpt4 book ai didi

php - 来自 php 变量的 Google Analytics 自定义变量(动态数字)

转载 作者:行者123 更新时间:2023-11-30 13:08:01 26 4
gpt4 key购买 nike

如何将此 php 变量作为自定义变量放入此 javascript 代码中?

我有一个动态编号,它在我的着陆页上为每个访问者生成唯一。这可用作 php 变量;

$点击数

我已经使用 GA (javascript) 编写了以下代码;

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>

我的问题:如何将此 php 变量作为自定义变量放入此 javascript 代码中?

最佳答案

<script>

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);

_gaq.push(['_setCustomVar', 1, 'clicknumber', <?= $clicknumber ?>, 2]);

_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>

更多信息:https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingCustomVariables#setup

关于php - 来自 php 变量的 Google Analytics 自定义变量(动态数字),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14959271/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com