wpdb::db_server_info() WordPress Method
The wpdb::db_server_info() method is used to get the version of the MySQL server being used by WordPress. This is useful for debugging purposes or for displaying the version number on a WordPress site.
wpdb::db_server_info() #
Retrieves full database server information.
Return
(string|false) Server info on success, false on failure.
Source
File: wp-includes/wp-db.php
public function db_server_info() { if ( $this->use_mysqli ) { $server_info = mysqli_get_server_info( $this->dbh ); } else { $server_info = mysql_get_server_info( $this->dbh ); } return $server_info; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |