Home >Backend Development >PHP Tutorial >请教一个CI框架的问题

请教一个CI框架的问题

WBOY
WBOYOriginal
2016-06-23 13:20:25830browse

有这样一张表:

id(int)  name(char) sign(char)

在执行 $query=$this->db->get($table);
$data = $query->result_array();
之后想要获取 其中 sign 的值(并非用于显示,而是在控制器或者模型中获取值)

我试着用 $data['sign'] 获取我想要的,但是无法成功,无论结果到底是有多行还是只有一行。

应该使用什么方法?


回复讨论(解决方案)

print_r($data);是什么结果呢

太谢谢了,虽然你没有给出具体的代码,但是受你的启发我还是把问题给解决了。

我疏忽了 $data 这里应该是个二维数组。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn