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 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable