wp_check_mysql_version() – Checks the version of the installed MySQL binary.
You appear to be a bot. Output may be restricted
Description
Checks the version of the installed MySQL binary.
Usage
wp_check_mysql_version();
Parameters
Returns
void
Source
File name: wordpress/wp-admin/includes/upgrade.php
Lines:
1 to 7 of 7
function wp_check_mysql_version() { global $wpdb; $result = $wpdb->check_database_version(); if ( is_wp_error( $result ) ) { wp_die( $result ); } }