In database manipulation scenarios, extracting data from a table into an associative array often arises. For queries featuring a key-value structure, the traditional approach involves two steps: fetching the results into a flat array and subsequently iterating through it to construct the desired associative array.
Nevertheless, an alternative solution exists that directly returns the associative array from the database query. Using the PDO fetchAll method with the PDO::FETCH_KEY_PAIR constant, one can achieve this efficiently:
$q = $db->query("SELECT `name`, `value` FROM `settings`;"); $r = $q->fetchAll(PDO::FETCH_KEY_PAIR);
This solution eliminates the need for additional processing and significantly simplifies the code. Notably, its compatibility with PostgreSQL 9.1 and PHP 5.3.8 makes it a viable option for a wide range of applications.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3