_phptemplate_render
- Versions
- 5
_phptemplate_render($file, $variables)
Code
themes/engines/phptemplate/phptemplate.engine, line 412
<?php
function _phptemplate_render($file, $variables) {
extract($variables, EXTR_SKIP); // Extract the variables to a local namespace
ob_start(); // Start output buffering
include "./$file"; // Include the file
$contents = ob_get_contents(); // Get the contents of the buffer
ob_end_clean(); // End buffering and discard
return $contents; // Return the contents
}
?>Login or register to post comments 