如何在Phil Sturgeon CodeIgniter模板中通过set()方法访问数据集?

时间:2012-11-12 19:16:34

标签: codeigniter templates

我有CI 2.1.3和模板1.9

模板1.9文档声明

  

组()

     

使用可链接方法设置数据。提供两个字符串或一组数据。

     

用法

$this->template->set('foo', $bar);
     

用法

$this->template->build('welcome_message', array('message' => 'Hi there!');

如何在视图文件中使用上述示例的foo / message变量?

我在模板文件中尝试了$template['foo']$foo,但无法获取该值。

1 个答案:

答案 0 :(得分:-1)

我正在编辑错误的模板文件。我可以使用

访问变量
 $foo

格式。