@rusgayfer

Как убрать теги в tpl файле?

Вот сам клаcc:

class TemplateEngine
{
    private $templateBuffer; 
    private $templateVars = []; 
    public function __construct($templateName)
    {
        if (!is_file('tpl/' . $templateName) || !$this->templateBuffer = file_get_contents('tpl/' . $templateName)) {
            trigger_error("Не могу загрузить шаблон {$templateName}");
        }
    }

    public function templateLoadInString($templateName, $vars)
    {
        if (!is_file('tpl/' . $templateName) || !$templateBuffer = file_get_contents('tpl/' . $templateName)) {
            return false;
        } else {
            foreach ($vars as $var => $content) {
                $templateBuffer = str_replace('{' . $var . '}', $content, $templateBuffer);
            }
            return $templateBuffer;
        }
    }
    public function templateLoadSub($subName, $subTag)
    {
        if (!$subBuffer = file_get_contents('tpl/' . $subName)) {
            trigger_error("Ошибка при загрузке шаблона - не могу найти файл {$subName}");
        } else {
            $this->templateBuffer = str_replace('{' . $subTag . '}', $subBuffer, $this->templateBuffer);
        }
    }
    public function templateSetVar($var, $content)
    {
        $this->templateVars[$var] = $content;
    }
   public function templateUnsetVar($var)
    {
        unset($this->templateVars[$var]);
    }
    public function templateCompile()
    {
        foreach ($this->templateVars as $var => $content) {
            $this->templateBuffer = str_replace('{' . $var . '}', $content, $this->templateBuffer);
        }
        $this->templateBuffer = preg_replace('/{(.*)}/', '', $this->templateBuffer);
    }

    public function templateDisplay()
    {
        echo $this->templateBuffer;
    }

}


В шаблон tpl добавляю теги с данными вот так {teg}

Как сделать, чтобы за тег не считался? Например указал я < code>{teg}< /code>, тогда вывело просто {teg}
  • Вопрос задан
  • 69 просмотров
Пригласить эксперта
Ответы на вопрос 1
politon
@politon
HTML5,CSS3,JS,PHP,SQL,API,canvas,animation...
{literal} {teg} {/literal}
Ответ написан
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы