我正在使用Codeigniter的Active Record Class.所以查询看起来像这样:
$query = $this->db->get_where('Table',array('field' => $value));
现在,从第一行获得一个字段的最快方法是什么?
$query-> first_row->字段;工作?
谢谢!
@H_404_8@@H_404_8@
虽然速度很快,但错误不是!确保在尝试访问结果之前始终检查结果($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; }@H_404_8@