3

只是为了一些背景,我正在使用带有模板火花的 codeigniter。

所以在我的控制器中我有以下功能

public function information()
{     
$this->load->library('session');
$developer_id = $this->session->userdata('developer_id');
$this->load->model("Developer_model");
$information = $this->Developer_model->get_developer($developer_id);
$this->template->set('information', (array) $information); 
$this->template->build('dashboard/information'); 
}

在我看来,我是这样呼应的

<?php echo $information['email']; ?>

出于某种原因,我回来了“消息:未定义的索引:电子邮件”

这是我的第一个问题,所以希望我不会不清楚,但基本上我是从我的数据库中获取 $ 信息并试图回显电子邮件,这只是一系列项目中的一个。

当我 var_dump $information 我得到以下信息:

object(stdClass)#21 (2) { ["timestamp"]=> int(1353444880991) ["result"]=> object(stdClass)#22 (3) { ["email"]=> string(21) "anothertest@gmail.com" ["api_key"]=> string(64) "de0f57acfc018882841b3255e89da11cb238160e84a66fe5b45bda8c51137c72" } } 

在此先感谢您的帮助,在此之前仅使用 codeigniter 2 个月,除了一些非常小的 html 废话之外,我实际上没有进行任何编码。所以请放轻松我 =D

4

2 回答 2

5

如果您查看您的 vardump,您的信息类中有第二类“结果”。试试 $information["result"]["email"];

于 2012-11-20T21:00:36.320 回答
3

在您的模型中返回响应->结果;而不是回应。然后你可以使用 ... $information['email']; ...应该管用

于 2012-11-20T21:19:43.927 回答