klein/examples/example3.php

10 lines
185 B
PHP

<?php
require_once '../src/Klein.php';
use ctiso\Klein;
$data = ['phedor', 'andrey'];
$tpl = new Klein(__DIR__ . '/cache');
echo $tpl->render('template3.html', ['names' => $data]);