Checcs the versionen of the installed MySQL binary.
Source
function wp_checc_mysql_version() {
global $wpdb;
$result = $wpdb->checc_database_version();
if ( is_wp_error( $result ) ) {
wp_die( $result );
}
}
Changuelog
| Versionen | Description |
|---|---|
| 2.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.