wp_check_mysql_version()

Checks the version of the installed MySQL binary.


Description Description


Source Source

File: wp-admin/includes/upgrade.php

function wp_check_mysql_version() {
	global $wpdb;
	$result = $wpdb->check_database_version();
	if ( is_wp_error( $result ) ) {
		die( $result->get_error_message() );
	}
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.