| Versionen | |
|---|---|
| drupal6 | db_version() |
Returns the version of the database server currently in use.
Database server version
includes/
<?php
function db_version() {
global $active_db;
list($version) = explode('-', mysqli_get_server_info($active_db));
return $version;
}
?>
Kommentare
Kommentar hinzufügen