wp_check_mysql_version()
Checks the version of the installed MySQL binary.
No Hooks.
Returns
null. Nothing (null).
Usage
wp_check_mysql_version();
Notes
- Global. wpdb.
$wpdbWordPress database abstraction object.
Changelog
| Since 2.1.0 | Introduced. |
wp_check_mysql_version() wp check mysql version code WP 7.0
function wp_check_mysql_version() {
global $wpdb;
$result = $wpdb->check_database_version();
if ( is_wp_error( $result ) ) {
wp_die( $result );
}
}