1

我是谷歌分析中自定义变量的新手。我不明白如何从用户那里获取会话/发布变量。

我正在尝试捕获$_SESSION['usercountry']并将其添加到 GA 数据中。它仅显示用户注册的国家/地区。

来自 GA

_gaq.push(['_setCustomVar',
      2,                   // This custom var is set to slot #2.  Required parameter.
      'Country', // The name of the custom variable.  Required parameter.
      '???',               // The value of the custom variable.  Required parameter.
                           //  (you might set this value by default to No)
      2                    // Sets the scope to session-level.  Optional parameter.
]);

我只是在有问号的地方输入 usercountry 吗?

4

1 回答 1

1

客户端 JavaScript 无权访问$_SESSION,因为集合保存在服务器端。

您需要以某种方式将值公开给 JavaScript。一种选择是简单地将其包含在 PHP 的初始输出中:

<script>
    var userCountry = <? echo json_encode($_SESSION['usercountry']) $>;
</script>

这使用json_encode()并利用了JSON的关系和与 JavaScript 的共享语法,因此它将被解析为JavaScript 文字。大概是 a String,所以 PHP 的结果echo类似于:

<script>
    var userCountry = "Country Name";
</script>

然后,您可以将其用于 Google Analytics:

_gaq.push([
    '_setCustomVar',
    2,                 // This custom var is set to slot #2.  Required parameter.
    'Country',         // The name of the custom variable.  Required parameter.
    userCountry ,      // The value of the custom variable.  Required parameter.
                       //  (you might set this value by default to No)
    2                  // Sets the scope to session-level.  Optional parameter.
]);
于 2013-07-31T19:24:33.070 回答