$TextMain = array("Title"=>'用户信息',"User"=>'用户名');$Value = 20;$template = new Template("../templates","keep");   // 建立 Template
$template->set_file("main","main.html"); // 设定test.html为main
$template->set_var("Text",$TextMain);
$template->set_var("Num",$Value);$template->parse("out", "main"); // 将main解析后存入out
$template->p("out"); 在模板里调用一般的变量时:  {Num}
但我想在模板中显示,如用户信处这项该如何写,{Text['Title']}  {Text.Title} {Title[0]}我都试过了也不行,请使用过phplib的大哥告诉我一下,必定加分