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)