PHP code example of jensostertag / templify

1. Go to this page and download the library: Download jensostertag/templify 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/ */

    

jensostertag / templify example snippets


Templify::setConfig("TEMPLATE_BASE_DIR", __DIR__ . "/templates");

Templify::display("template.php");

$variables = [
    "foo" => "bar",
    "bar" => "foo"
];

Templify::display("template.php", $variables);

Templify::

Templify::

$html = Templify::fetch("template.php", ["foo" => "bar"]);
html
<p> echo $foo;