dongwubao4785 2012-03-25 18:39
浏览 26
已采纳

“注意:当我看到对象存在时,试图获取非对象的属性”

Just trying to get some rows out of a database and loop through but I am get the non-object error.

    $db = classes_pdoDB::getConnection();
    $query = "SELECT *
              FROM lesson
              WHERE userID=:userID";
    $stmt = $db->prepare($query);
    $stmt->execute(array(':userID' => $userID));
    $lessons = $stmt->fetchAll();

    foreach ($lessons as $lesson){

        print_r ($lesson);

        $page->addToBody ("<div class=\"editLessonEntry\">
            <p><a href=\"editLesson.php?lessonid=" . $lesson->lessonID . "\" >" . $lesson->lessonTitle . "</a></p>
            <p>" . $lesson->lessonSummary . " </p>
        </div>
        <hr />");

    }

Not really certain what the error is because the print_r is working fine and showing me all the objects which I am trying to include. I'm sure like all of my questions I am just overlooking something incredibly simple. But I really cannot see it. I have other similar functions through the site which work fine and I can't see the differences really.

  • 写回答

1条回答 默认 最新

  • dongpin1850 2012-03-25 19:01
    关注

    fetchAll() returns an array unless you have specified the class to return with PDO::FETCH_CLASS. So in this case, you should be accessing $lesson by array elements rather than object properties:

    $lessons = $stmt->fetchAll();
    
    foreach ($lessons as $lesson){
    
        print_r ($lesson);
    
        $page->addToBody ("<div class=\"editLessonEntry\">
            <p><a href=\"editLesson.php?lessonid=" . $lesson['lessonID'] . "\" >" . $lesson['lessonTitle'] . "</a></p>
            <p>" . $lesson['lessonSummary'] . " </p>
        </div>
        <hr />");
     }
    

    If you must get these as an object and have a Lesson class, you can do it this way:

    $lessons = $stmt->fetchAll(PDO::FETCH_CLASS, "Lesson");
    

    This assumes the Lesson class takes no parameters to its constructor. This is detailed in the fetchAll() documentation.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 在获取boss直聘的聊天的时候只能获取到前40条聊天数据
  • ¥20 关于URL获取的参数,无法执行二选一查询
  • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开
  • ¥15 marlin编译错误,如何解决?
  • ¥15 有偿四位数,节约算法和扫描算法
  • ¥15 VUE项目怎么运行,系统打不开
  • ¥50 pointpillars等目标检测算法怎么融合注意力机制
  • ¥20 Vs code Mac系统 PHP Debug调试环境配置
  • ¥60 大一项目课,微信小程序
  • ¥15 求视频摘要youtube和ovp数据集