1. Go to this page and download the library: Download arhone/templating library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
echo $templater->render([
__DIR__ . '/template/extend/myModule/default.tpl', // Новый
__DIR__ . '/myModule/template/default.tpl' // Стандартный
]); // Подключиться template/extend/myModule/default.tpl если он существует
$templater->body = 'Содержимое';
$templater->set('body', 'Содержимое'); // Тоже самое
echo $templater->body;
$templater->body .= ' продолжение';
$templater->add('body', ' продолжение'); // Тоже самое
echo $templater->body;
echo $templater->body;
echo $templater->get('body'); // Тоже самое
$templater->body = null;
$templater->delete('body'); // Тоже самое
unset($templater->body); // Тоже самое