Kohana,如何获取$query->execute()的结果

发布于 2024-11-27 07:23:50 字数 504 浏览 0 评论 0原文

    $query = DB::query(Database::SELECT, "select * from users where username like :username") ;
    $query->param(':username', $username) ;
    $query->parameters(array(
        ':username' => '%'. $username. '%'
    )) ;

    $result = $query->execute()->as_array() ;

    if ($result->count() > 0)
    {
        return $result ;
    }
    else
    {
        return null ;
    }

ErrorException [致命错误]:在非对象上调用成员函数 count()

如何获取查询结果?有人帮助..thx..

    $query = DB::query(Database::SELECT, "select * from users where username like :username") ;
    $query->param(':username', $username) ;
    $query->parameters(array(
        ':username' => '%'. $username. '%'
    )) ;

    $result = $query->execute()->as_array() ;

    if ($result->count() > 0)
    {
        return $result ;
    }
    else
    {
        return null ;
    }

ErrorException [ Fatal Error ]: Call to a member function count() on a non-object

how to get the result of query?anybody help ..thx..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最丧也最甜 2024-12-04 07:23:50

如果 $result = $query->execute()->as_array() ; 返回一个数组,则您的 if 语句应该是

if (count($result) > 0)
{
    return $result ;
}
else
{
    return null ;
}

If $result = $query->execute()->as_array() ; returns an array, your if statement should be

if (count($result) > 0)
{
    return $result ;
}
else
{
    return null ;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文