我正在使用Codeigniter的Active Record Class。所以查询看起来像这样:
$query = $this->db->get_where('Table', array('field' => $value));
现在,从第一行获取字段的最快方法是什么?
$query->first_row->field
;工作?
谢谢!
答案 0 :(得分:10)
虽然速度很快,但错误不是!在尝试使用($query->num_rows() > 0)
最快(最简洁)的方式:
$query = $this->db->get_where('Table', array('field' => $value));
echo(($query->num_rows() > 0) ? $query->first_row()->field : 'No Results');
基本上与:
相同$query = $this->db->get_where('Table', array('field' => $value));
if($query->num_rows() > 0)
{
echo $query->first_row()->field;
}
else
{
echo 'No Results';
}
对于多个字段,请使用:
$query = $this->db->get_where('Table', array('field' => $value));
if ($query->num_rows() > 0)
{
$row = $query->row();
echo $row->title;
echo $row->name;
echo $row->body;
}
答案 1 :(得分:8)
$query->first_row()->field