niklas/template

简单的HTML模板

v1.0.1 2017-08-11 07:20 UTC

This package is not auto-updated.

Last update: 2024-09-29 03:47:17 UTC


README

简单的HTML模板

示例

$template = new Template("testIndex.html");

echo "Content is below the testSide, becouse the maincontent tags (%%)";

$template->set("title", "Hello");
$template->assign(["test"=>"search","test2"=>"And", "test3"=>"Replace"]);
$template->append("newFile", "testSide.html");

echo $template->render();

安装

Niklas/Template 在 packagist.org 上可用

使用 composer 安装

composer require niklas/template