ninejkh / tpl
简单的模板引擎
0.3.0
2018-11-10 14:46 UTC
Requires
- php: >=5.5.0
- mobiledetect/mobiledetectlib: ^2.8
Requires (Dev)
- satooshi/php-coveralls: ^1.0
Suggests
- wyrihaximus/html-compress: If installed, will automatically compress html output.
This package is not auto-updated.
Last update: 2024-09-25 16:09:16 UTC
README
ninejkh/tpl
这是一个极其简单的模板引擎,如果你认为PHP已经足够做好这一点。没有编译或缓存状态,纯PHP。
安装
$ composer require ninejkh/tpl
使用方法
<?php require 'vendor/autoload.php'; use NINEJKH\Tpl\Tpl; $tpl = new Tpl('tpl/'); $tpl->assign('foo', 'bar'); $tpl->display('home');
许可协议
MIT 许可证下授权。有关详细信息,请参阅 LICENSE 文件。