|
<p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds</p>这里的{elapsed_time}能自动替换
可是我的<title>{webTitle}</title>这个{webTitle}不能,
我在welcome.php中
public function index()
{
$data = array(
'webTitle' => 'My Title',
'heading' => 'My Heading',
'message' => 'My Message'
);
$this->load->view('welcome_message',$data);
}
手册上是这样写的<title><?php echo $webTitle; ?></title>,这样写是可以的,可是我想用{webTitle}这种形式,简单
哪位指点下,谢谢
|
|