Home > uTemplate

uTemplate

UTemplate is a project mainly written in PHP, it's free.

A tiny template renderer for PHP

μTemplate is the simplest possible template renderer I could write in PHP.

Usage:

/* template.php */
<?php
<h1><?=$title?></h1>
<p><?=$content?></p>
?>
---
/* myapp.php */
include('class.utemplate.php');
$context = array(
    "title" => "Hello, World!",
    "content" => "How's the weather?",
)

uTemplate::render($template_path, $context);
Previous:Physics