albertofem/wiser

增强的PHP模板引擎

dev-master 2013-07-24 07:02 UTC

This package is not auto-updated.

Last update: 2024-09-22 04:02:33 UTC


README

Build Status

Wiser 不是一个模板引擎。它旨在为PHP模板引擎提供增强的功能。它高度受到 Savant3 的启发。

用法

基本用法示例

use Wiser\Wiser;

$config = array('template_path' => __DIR__ . '/views/);

$wiser = new Wiser($config);
$wiser->render('template.html.php', array('myVar' => 'test'));

在模板中

如果您使用 PHP >= 5.4. *

<?= $myVar; ?>

如果您使用 PHP <= 5.3. *

<?php echo $myVar; ?>