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 怎样才能让鼠标沿着线条的中心线轨迹移动
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?
  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?