以KRL获取用户的时区

时间:2010-12-28 16:16:35

标签: krl

Mike的question about getting the time in KRL的后续问题。是否有可能获得用户的时区?有timezone predicate

time:timezone(<arg>)

但看起来需要一个参数。我该如何使用它?

1 个答案:

答案 0 :(得分:1)

time:timezone(<arg>)是一个返回true或false的谓词。

我将更正文档,但是时间:timezone()采用时区缩写并检查用户的地理位置(基于IP地址)并返回true或false

   rule first_rule is active {
    select when pageview ".*" setting ()
    if (time:timezone("MST")) then {
      notify("Glee alert", "Glee starts at 7pm");
    }

  }