anis2505 / darwintpl
DarwinTpl 模板引擎
dev-master
2015-08-22 11:16 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-10-02 10:14:48 UTC
README
##DarwinTpl 模板引擎 V1.0.0 分布式仓库
使用原生 PHP 标记的 PHP 模板引擎。无需学习复杂或新的语法。
要开始使用,请下载 DarwinTpl 包。
包含 DarwinTpl 类文件。
include(PATH_TO_DARWINTPL.'DarwinTpl.php')
或者简单使用 composer
"require": {
"anis2505/darwintpl":"dev-master"
}
在您的 composer.json 文件中。
在您的脚本中创建类的实例
$darwinTpl = new Darwin\DarwinTpl( TEMPLATES_ROOT_PATH );
现在您已经准备好使用 DarwinTpl。
$darwinTpl->render("templatefile");