我尝试制作一个可以在 .tpl 文件中运行的函数。
我包括了一堂课Templates
:
<?php
class Templates {
function getTemplate($template, $gameid) {
echo "test";
}
}
?>
然后我把它放到 PHP 页面中。
//Create a template object
$templates = new Templates();
$tpl->assign("template", $templates);
然后我尝试在以下位置调用该函数tpl file
:
{$template->get('header',1)}
但是当我尝试这个时,我只是得到一个空白页。
任何想法如何实际做到这一点?