以下是代码:
include 'Smarty.class.php';
$smarty = new Smarty;
$smarty->assign('variable', $variable);
$content = $smarty->fetch('content.tpl');
如何删除Smarty并使用基本的PHP函数?
我可以使用* file_get_contents *,这会将$ variable发送到文件:
$content = file_get_contents('content.php'); // I've renamed .tpl to .php
答案 0 :(得分:0)
你可以使用fetch('string:'。$ content);与Smarty 3及以上。