An open API service indexing awesome lists of open source software.

https://github.com/phpdevcommunity/php-template-engine

A simple php templating
https://github.com/phpdevcommunity/php-template-engine

Last synced: 3 months ago
JSON representation

A simple php templating

Awesome Lists containing this project

README

          

# PHP template engine
A simple PHP template engine

Easy to use:

``` php
$template = new Template('var/www/html/project/template', []);
echo $template->render('home-page.php');
```
With parameters:
``` php
$template = new Template('var/www/html/project/template', ['lang' => 'fr']);
echo $template->render('home-page.php', ['title' => 'Home Page']);
```

``` html




...

...

```