We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
If you want that the engine ignore some variables in template, specify the variables as a list of names in the third parameter of constructor:
/* Third parameter as array */ echo new div('index.tpl', ['name' => 'Peter'], ['name']); /* Third parameter as string */ echo new div('index.tpl',['name' => 'Peter', 'age' => 25, 'sex' => 'M'], 'name,age');