他用什么语言?

What language is he using?

我在 google 中找到了一些代码。我想知道,这是什么语言?我也在 google 中搜索相同的内容。我找不到了。

$(if error == '')
<html>
   <head>
      <title>...</title>
      <meta http-equiv="refresh" content="0; url=http://repace_with_your_server.com/cake2/rd_cake/dynamic_details/mikrotik_browser_detect/?loginlink=$(link-login-only)&nasid=$(identity)&ssid=Struisbaai&type=mikrotik&link_status=$(link-status)&link_login_only=$(link-login-only)&link_logout=$(link-logout)">
      <meta http-equiv="pragma" content="no-cache">
      <meta http-equiv="expires" content="-1">
   </head>
   <body>
   </body>
</html>
$(else)
$(var)({
    'logged_in'         : '$(logged-in)',   
    'link_login_only'   : '$(link-login-only)',
    'error_orig'        : '$(error-orig)',
    'error'         : '$(error)'
})
$(endif)

它看起来确实像某种模板引擎,而不是分离的语言。您可以阅读有关可用模板引擎的信息 here。他们本质上是将文本编码信息交换为基础数据,在你的情况下我不知道它是哪个特定引擎,但它可能是专门为这个任务制作的东西所以很难回答你的问题。