-
The processed templates are compiled into PHP scripts that can be executed directly. Compiled templates get cached. Unchanged templates are not recompiled.Operators look like HTML tags. There are no hardcoded operators. Operators can overload HTML tags so their meaning can be expanded.
-
Rule based system for taking data associated with a database result id and pushing through specified templates.Result Class allows for significant reuse of code, particularly forms.
-
Template Generation reads template files using the PHP include function to make any PHP in the template file be executed. Then it searches the resulting included file for template placeholders.Regular expressions are used to match input parameters and the found placeholders are replaced by their respective parameter values.
-
No knowledge of a special syntax is required and a template can be created with only four lines of code.
-
Loading template from files, replacing variables, executing custom PHP code and debugging functions are supported.Requirements: PHP 4.0.0 or higher
-
cache wraps around the ob PHP functions. It has the ability to do inline str_replaces in the buffer for use in a template system. This lets a template system print directly to PHP's output buffer and modify the results, keeping the programmer from having to maintain a gigantic string object through their code.The cache class compliments this by allowing the ...
-
Template Handler sets template objects which are contained within the template file. Objects can be set multiple times within the same script with each "setObject" content appending to the previous.Additionally, the template can also contain PHP code, and Template Handler will be correctly evaluated and displayed.
-
The @ character precedes the placeholder marks.Parse HTML Template replaces placeholder marks by template parameter values passed as an associative array.Requirements: PHP 5.0 or higher
-
The files are created from templates.Easy-create-file is a wonderfull thing for us. You know, saving time is the most important things.
-
phplibTemplateExtention provides several enhancements over the original template class.Key Features of phplibTemplateExtention:- Automatic detection and declaration of blocks- Automatic "blanking" of unused blocks- Blocks automatically declared in proper nested order.- All calls to set up template/file/paths/names in the class call.
-
The templates are PHP scripts with regular PHP constructs inside. A require command pointing to this class is used to process the template.The template parameters are class variables that are assigned by a class function. Template scripts use the template parameters using the $this pseudo-variable.
-
Regular expressions are used to locate and extract every block and replace template marks with parameter values.
-
Regular expressions are used to parse the template files and locate the block marks.Then dynamicTemplate uses simple string replacement to substitute template place holders by the respective parameter values. It can use arrays to assign template parameters.
-
Regular expressions are used to locate placeholders and replace them with the assigned variable values. Curly braces { } ) are used to identify placeholders.phpEngine also supports the spacial tags <loop> and <var> to identify placeholders and iteration loop sections.
-
Mrasnika's template system features such as blocks, includes, loops with or without section for empty lists, fast variable and template substitution, as well as sub-templates are supported.

