gpt4 book ai didi

php - 这个 PDO 声明有什么问题?不能将 PDOStatement 类型的对象用作数组

转载 作者:行者123 更新时间:2023-12-01 00:11:33 25 4
gpt4 key购买 nike

<分区>

我想从“Themes”表中获取所有结果。

function display_all_themes()
{
global $pdo;
$select = $pdo->prepare("SELECT * FROM themes");
$select->execute();

while ($row = $select->fetch(PDO::FETCH_ASSOC))
{
echo $select['theme_name'].'<br />';
}
}

出现此错误:

fatal error :无法将 PDOStatement 类型的对象用作 C:\xampp\htdocs\driptone\inc\functions.inc.php 中的数组,第 137 行

第 137 行:

    echo $select['theme_name'].'<br />';

问题是什么?谢谢。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com