是的
看一下rFastTemplate的文档
或是检索一下rFastTemplate.php3中含有function的行

解决方案 »

  1.   

    ->就是指针 define是rFastTemplate下的方法
      

  2.   

    刚看了看class.rFastTemplate.php, 里面有这样简单的注释
    //      parse        --> subst
    //      get_assiged  --> getkey
    //      assign       --> setkey
    //      clear_href   --> unsetkey
    //      clear_assign --> unsetkey
    //      FastPrint    --> xprint
    不知哪位能否用中文给说详细些,谢谢楼上2位。
      

  3.   

    看了会代码,对rFastTemplate有点点了解,但还说不出来。
    希望得到各位的帮助$tpl->parse("CONTENT", ".check");
    $tpl->parse("CONTENT", ".result");
     对于".check"是否可作为字符串处理?下班之前结帖
      

  4.   

    $tpl->parse("a", "1");
    $tpl->parse("b", "2");
    $tpl->assign(array(
          "c"     => "&3;",
          "d"    => $4
    ));
    $tpl->parse("e", "5");
    $tpl->parse("f", "6");
    $tpl->parse("g", "7");
    $tpl->parse("h", ".8");
    $tpl->parse("i", ".9");
    $tpl->parse("j", "10");
    $tpl->FastPrint();用到了这么多parse,不晓得输出的顺序如何。.... :(