FXL Template 是一个易于使用的 PHP 模板引擎。拥有良好的规则表达式和简单的模板语法。
示例:[code]require_once 'fxl_template.inc.php';
$fxlt = new fxl_template('example.tpl');
$fxlt->assign('greeting', 'hello world!');
$fxlt->display;[/code]主页:http://www.feverxl.org/
下载:http://www.feverxl.org/template/download.html
来自:开源中国社区

