andrewpk/aktemplate
最新稳定版本:1.0.0
Composer 安装命令:
composer require andrewpk/aktemplate
包简介
A super simple php templating library for learning. So simple, you probably can just look at how this code works and do it yourself.
README 文档
README
A simple html view templating engine for PHP with zero dependencies. This all started quite a few years ago as a gist, as I used similar styles of templating based off my work with smarty and jinja templates in the past.
I realized how my gist was quite outdated and had no documentation, so I decided to publish this as an actual library.
Usage
composer require andrewpk/aktemplate
And then you can either import the class:
use AKTemplate\Template;
Or you can just reference the fully qualified namespace when creating a template:
$template = new AKTemplate\Template();
Inside your templates you can set and get variables using the $t shortcut:
<?= $t->rando ?>
If you name your templates with the .tpl suffix, most editors won't complain about the undefined $t variable.
If you'd prefer, you can name your templates with a .php suffix and then an annotation in a php block at the top instead:
<?php /** @noinspection PhpUndefinedVariableInspection */ ?>
Example
Check out the Example directory for a working example.
License
MIT
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-05-27