php + smarty
Posted 菜鸟PHP工程师的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php + smarty相关的知识,希望对你有一定的参考价值。
往模板中写入数据
$this->tpl->assign(array(
‘game_rewards‘ => $game_rewards,
)
);
没有数据可以不写入数据,下面渲染出一个模板:
$this->tpl->display(‘../template/game_app/game_reward.tpl‘);
在模板中渲染出数据
<{php}>
foreach($game_rewards as $game_reward){
echo $game_reward."\n";
}
<{/php}>
php代码块需要使用<{php}>和<{/php}>
包含起来。
以上是关于php + smarty的主要内容,如果未能解决你的问题,请参考以下文章