Retrieve a Single Column of Data into a 1-Dimensional Array Using PDO
PDO offers a versatile way to interact with MySQL databases, but extracting specific columns into a single array can sometimes be challenging. Here's a method to accomplish this effectively:
Query and Set Fetch Mode
First, construct your query and prepare a PDO statement as usual:
$sql = "SELECT `ingredient_name` FROM `ingredients`"; $statement = $pdo->query($sql); $statement->setFetchMode(PDO::FETCH_ASSOC);
Use the fetchAll() Method
Instead of using the standard fetch() or fetchAll() methods, employ the fetchAll(PDO::FETCH_COLUMN) method to specify that you want only the specified column:
$ingredients = $statement->fetchAll(PDO::FETCH_COLUMN);
Explanation
By using PDO::FETCH_COLUMN, you instruct PDO to retrieve all values of the specified column (ingredient_name in this case) and store them in a 1-dimensional array named $ingredients. This array will contain only the ingredient names.
Example
For instance, if your ingredients table contains the following ingredient names:
ingredient_name |
---|
Flour |
Sugar |
Eggs |
The $ingredients array will have the following elements:
['Flour', 'Sugar', 'Eggs']
以上是如何使用 PDO 將單列資料檢索到一維數組?的詳細內容。更多資訊請關注PHP中文網其他相關文章!