使用 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中文网其他相关文章!