From bca32204eeafd86f2ad229e8410e4ba5cbd70d9f Mon Sep 17 00:00:00 2001 From: Justin Martin Date: Mon, 5 Dec 2011 22:31:50 +0000 Subject: [PATCH] Changed the description of PDO::FETCH_KEY_VALUE to match actual behaviour (requiring the result set to have exactly two columns). Closes bug #55053. -- Provided by anonymous #11351 () git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@320468 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/pdo/constants.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/pdo/constants.xml b/reference/pdo/constants.xml index e8ad7652a0..91aaf1ee63 100644 --- a/reference/pdo/constants.xml +++ b/reference/pdo/constants.xml @@ -271,8 +271,8 @@ - Fetch into an array where the 1st column is a key and all subsequent - columns are values. Available since PHP 5.2.3. + Fetch a two-column result into an array where the first column is a key and the second column + is the value. Available since PHP 5.2.3.