ahmachan / heng-phptemplate

Think - PHP模板编译引擎

安装: 21

依赖: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 0

公开问题: 0

类型:项目

v1.0.5 2016-07-25 05:37 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:31:14 UTC


README

基于php 5.4+的PHP模板引擎。

对于相同概念的当前PHP 5实现,请查看phpsavant.com。

示例 '''

set('title', '商品列表'); $body = new Template($path); $body->set('goods', fetch_goodslist()); $tpl->set('content', $body->fetch('goodslist.tpl')); echo $tpl->fetch('index.tpl'); ?>

''' 它可以与以下模板一起使用。

'''

''' ''' <title></title>

'''