On this page
wpdb::load_col_info()
Loads the column metadata from the last query.
Source
File: wp-includes/class-wpdb.php. View all references
protected function load_col_info() {
if ( $this->col_info ) {
return;
}
if ( $this->use_mysqli ) {
$num_fields = mysqli_num_fields( $this->result );
for ( $i = 0; $i < $num_fields; $i++ ) {
$this->col_info[ $i ] = mysqli_fetch_field( $this->result );
}
} else {
$num_fields = mysql_num_fields( $this->result );
for ( $i = 0; $i < $num_fields; $i++ ) {
$this->col_info[ $i ] = mysql_fetch_field( $this->result, $i );
}
}
}
Related
Used By
| Used By | Description |
|---|---|
| wpdb::get_col_info() wp-includes/class-wpdb.php | Retrieves column metadata from the last query. |
| wpdb::__get() wp-includes/class-wpdb.php | Makes private properties readable for backward compatibility. |
Changelog
| Version | Description |
|---|---|
| 3.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wpdb/load_col_info