需要帮助来理解 PDO 的结果集

发布于 2024-11-01 08:36:39 字数 991 浏览 2 评论 0原文

我有以下函数执行 PDO 查询:

  // removed error handling for presenting here
  function getRows($sql) {
      $stmt = $this->db->query($sql);
      $result = $stmt->fetchAll(PDO::FETCH_ASSOC);          
      return $result;            
    } 
  }

结果是:

Array
(
    [0] => Array
        (
            [id] => 1
            [category] => Audi
        )

    [1] => Array
        (
            [id] => 2
            [category] => BMW
        )

    [2] => Array
        (
            [id] => 3
            [category] => Chrysler
        )

)

以下 foreach 代码:

foreach($result as $key => $value ) {
  echo $value.'<br/>';
}

输出:

Array
Array
Array

我该怎么做才能返回以下内容?

Audi
BMW
Chrysler

我知道我可以这样做 $value['category]

但这不是我想要实现/理解的。我希望结果集成为数组的数组。

I have the following function executing PDO queries:

  // removed error handling for presenting here
  function getRows($sql) {
      $stmt = $this->db->query($sql);
      $result = $stmt->fetchAll(PDO::FETCH_ASSOC);          
      return $result;            
    } 
  }

The result is:

Array
(
    [0] => Array
        (
            [id] => 1
            [category] => Audi
        )

    [1] => Array
        (
            [id] => 2
            [category] => BMW
        )

    [2] => Array
        (
            [id] => 3
            [category] => Chrysler
        )

)

The the following foreach code:

foreach($result as $key => $value ) {
  echo $value.'<br/>';
}

outputs this:

Array
Array
Array

What can I do so it returns the following?

Audi
BMW
Chrysler

I understand that I could just do $value['category].

But that's not what I want to achieve / understand. I would like the resultset not to be an array of arrays.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忆依然 2024-11-08 08:36:39

尝试

foreach($result as $key => $value ) {
  echo $value['category'].'<br/>';
}

替代方案

foreach($result as $k)
{
    echo $k['category'];
}

try

foreach($result as $key => $value ) {
  echo $value['category'].'<br/>';
}

Alternative

foreach($result as $k)
{
    echo $k['category'];
}
儭儭莪哋寶赑 2024-11-08 08:36:39

foreach 循环将数组拆分为键值对。循环中的键是数组的索引,值是包含 ID 和 Category 的数组。

要访问该类别,只需执行以下操作:

foreach($result as $key => $value ) {
  echo $value['category'].'<br/>';
}

The foreach loop splits up your array into key, value pairs. The key in your loop is the index of the array, the value is an array containing ID and Category.

To access the category simply do:

foreach($result as $key => $value ) {
  echo $value['category'].'<br/>';
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文