A more elegant way of doing get_col.

git-svn-id: https://develop.svn.wordpress.org/trunk@5861 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2007-08-10 19:30:24 +00:00
parent 91a88550f1
commit 3b8b2a649a
1 changed files with 8 additions and 3 deletions

View File

@ -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;
}