2017 © Pedro Peláez
 

library think-template

the php template engine

image

topthink/think-template

the php template engine

  • Friday, April 20, 2018
  • by topthink
  • Repository
  • 3 Watchers
  • 13 Stars
  • 477 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 57 % Grown

The README.md

think-template

从ThinkPHP5.1独立出来的编译型模板引擎, (*1)

主要特性

  • 支持XML标签库和普通标签的混合定义;
  • 支持直接使用PHP代码书写;
  • 支持文件包含;
  • 支持多级标签嵌套;
  • 支持布局模板功能;
  • 一次编译多次运行,编译和运行效率非常高;
  • 模板文件和布局模板更新,自动更新模板缓存;
  • 系统变量无需赋值直接输出;
  • 支持多维数组的快速输出;
  • 支持模板变量的默认值;
  • 支持页面代码去除Html空白;
  • 支持变量组合调节器和格式化功能;
  • 允许定义模板禁用函数和禁用PHP语法;
  • 通过标签库方式扩展;

安装

composer require topthink/think-template

用法示例

在根目录下创建index.php入口文件测试:, (*2)

<?php
namespace think;

require __DIR__.'/vendor/autoload.php';

// 设置模板引擎参数
$config = [
    'view_path' =>  './template/',
    'cache_path'    =>  './runtime/',
    'view_suffix'   =>  'html',
];

$template = new Template($config);
// 模板变量赋值
$template->assign('name','think');
// 读取模板文件渲染输出
$template->fetch('index');
// 完整模板文件渲染
$template->fetch('./template/test.php');
// 渲染内容输出
$template->display($content);

详细用法参考这里, (*3)

The Versions

20/04 2018

dev-master

9999999-dev

the php template engine

  Sources   Download

Apache-2.0

The Requires

  • php >=5.6.0

 

by liu21st

20/04 2018

v1.0.1

1.0.1.0

the php template engine

  Sources   Download

Apache-2.0

The Requires

  • php >=5.6.0

 

by liu21st

01/11 2017

1.0

1.0.0.0

the php template engine

  Sources   Download

Apache-2.0

The Requires

  • php >=5.6.0

 

by liu21st