drra6593 2018-04-28 09:10
浏览 115
已采纳

PDO fetchAll()给了我stdClass

I am learning about PHP blobs and I got an issue with the data I am getting back.

Notice: Undefined property: stdClass::$

I am getting this for my results when I echo the column names in the foreach loop

$sql = "SELECT * FROM tbl_blobs";

$stmt = $db->prepare($sql);
$stmt->execute();
$stmt->bindColumn(1, $name);
$stmt->bindColumn(2, $mime);
$stmt->bindColumn(3, $data, PDO::PARAM_LOB);

$arr = [];

$items = $stmt->fetchAll(PDO::FETCH_OBJ);

foreach ($items as $item) {
    echo $item->name;
}

Is there a function I need to use to wrap the results in or am I missing a step?

Desired Outcome: => To have all the items in an array so it can be encoded into a JSON string. One of the items is a blob.

Output of array using var_dump($items);

array(5) { [0]=> object(stdClass)#3 (4) { ["ID"]=> string(1) "1" ["NAME"]=> string(7) "test123" ["IMAGE"]=> string(17861) (followed by a blob)

  • 写回答

1条回答 默认 最新

  • doushang1964 2018-04-28 09:30
    关注

    You could use PDO::FETCH_ASSOC instead of PDO:FETCH_OBJ it would directly return an associative array.

    See fetchAll arguments for more options

    Set it for the whole PDO instance

    If you want to have this behavior for all your queries in your PDO connection, you can set it with:

    $db = new \PDO('mysql:host='.$dbhost.';dbname='.$dbname, $dbusername, $dbpassword, [
        PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC
    ]);
    

    Another way it to set it after the PDO instanciation, with:

    $db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
    

    edit: added global alternatives

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

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀