From 3b8b2a649aa9b735016f4a1df0315c4a4c61fe37 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 10 Aug 2007 19:30:24 +0000 Subject: [PATCH] A more elegant way of doing get_col. git-svn-id: https://develop.svn.wordpress.org/trunk@5861 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/wp-db.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index c30b321935..09461f2bc6 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -310,9 +310,14 @@ class wpdb { else return null; - // Extract the column values - for ( $i=0; $i < count($this->last_result); $i++ ) { - $new_array[$i] = $this->get_var(null, $x, $i); + if ( !$this->last_result ) + return null; + + $i = 0; + foreach( $this->last_result as $row ) { + $arr = array_values( (array) $row ); + $new_array[$i] = $arr[0]; + $i++; } return $new_array; }