zvax/templating

a simple php templates parser

2.0.0 2023-01-19 07:32 UTC

This package is auto-updated.

Last update: 2024-04-20 00:42:17 UTC


README

Mostly abandoned project, used for the Renderer interface, and the Twig Adapter so that I can use it in other projects.

The following is still somewhat true.

Simple templates parser engine

The Engine is the parser, it will regex template strings and replace keys with values

$templateString = '{first}{$second}{$obj->third}';
$engine = new Engine();
$obj = new stdClass();
$obj->third = 'sentence.';
$string = $engine->render($templateString,[
	'first' => 'This ',
	'second' => 'is a ',
	'obj' => $obj,
]);
// This is a sentence.

there is very basic support for loops:

$string = $engine->render('{foreach $posts as $post}{$post}{/foreach}',[
            'posts' => [
                'post1',
                'post2',
            ],
        ]);
// post1post2

the posts array must be a 0 indexed container of strings