php – 从查询的第一行获取字段

前端之家收集整理的这篇文章主要介绍了php – 从查询的第一行获取字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Codeigniter的Active Record Class.所以查询看起来像这样:
$query = $this->db->get_where('Table',array('field' => $value));

现在,从第一行获得一个字段的最快方法是什么?
$query-> first_row->字段;工作?

谢谢!

虽然速度很快,但错误不是!确保在尝试访问结果之前始终检查结果($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;
}
原文链接:https://www.f2er.com/php/134841.html

猜你在找的PHP相关文章