首页 >数据库 >mysql教程 >如何使用 PHP 将列值提取到数组中?

如何使用 PHP 将列值提取到数组中?

Barbara Streisand
Barbara Streisand原创
2024-11-03 18:42:02409浏览

How to Fetch Column Values into an Array Using PHP?

使用 PHP 将列值检索到数组

问题:

如何获取使用 PHP 将 MySQL 表的特定列中的所有值存储在数组中?

解决方案:

要实现此目的,您可以使用 PDO 或 mysqli使用 PHP。以下是两种方法的细分:

使用 PDO:

<code class="php">$stmt = $pdo->prepare("SELECT Column FROM foo");
// Note: Using a LIMIT clause is advised for large tables to avoid performance issues.
$stmt->execute();
$array = $stmt->fetchAll(PDO::FETCH_COLUMN);
print_r($array);</code>

使用 mysqli:

<code class="php">$stmt = $mysqli->prepare("SELECT Column FROM foo");
$stmt->execute();
$array = [];
foreach ($stmt->get_result() as $row) {
    $array[] = $row['column'];
}
print_r($array);</code>

示例输出:

Array
(
    [0] => 7960
    [1] => 7972
    [2] => 8028
    [3] => 8082
    [4] => 8233
)

以上是如何使用 PHP 将列值提取到数组中?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn