codemix/handlebarsphp
Composer 安装命令:
composer require codemix/handlebarsphp
包简介
Transpiles handlebars templates into native PHP templates.
README 文档
README
Note: this is alpha quality software, use at your own risk.
Turns handlebars templates into executable PHP code ahead of time, ships with built in support for Yii 1.x. but allows customisation of output to support different frameworks.
Installation
Install via composer, package name is codemix/handlebarsphp.
Differences from HandlebarsJS
HandlebarsPHP aims to be compatible with a subset of HandlebarsJS. For performance reasons it compiles the templates ahead of time and this necessitates some restrictions.
-
Since it's impossible to tell whether a tag like
{{foo}}is a helper or a property at compile time, we assume that its a property. We differentiate helpers by looking for arguments, for example{{foo 1}}will be interpretted as a function call because it has an argument. This means that it is impossible to call a helper with zero arguments. -
{{@key}}and{{@index}}always point to the same variable, becauseforeachis used for all iteration.
统计信息
- 总下载量: 20
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-07-02