微型模板引擎一个小的单文件php模板引擎支持占位符变量的{Title} {IF:Condition} 、 {ELSE}和{ENDIF}用于IF语句{LOOP:Loopvariable}和{ENDLOOP} for循环PHP-代码// Include File require_once ( 'template.class.php' ); // Create a new Template $ tpl = new Template ( 'page.tpl' ); // Build up data structure for template $ peoples = array (); $ peoples [ 0 ] = array ( 'name' => 'miller' , 'surname' => 'peter' ); $ peoples [ 1 ] = array (