wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_check_mysql_version › WordPress Function

Seit2.1.0
Veraltetn/v
wp_check_mysql_version ( Keine Parameter )
Definiert in:
Codex:

Checks the version of the installed MySQL binary.



Quellcode

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