예제 #1
0
 function fs_get_template($path, &$params = null)
 {
     ob_start();
     $VARS =& $params;
     require_once fs_get_template_path($path);
     return ob_get_clean();
 }
function fs_require_once_template($path, &$params = null)
{
    $VARS =& $params;
    require_once fs_get_template_path($path);
}