WP_Debug_Data::get_database_size
Fetches the total size of all the database tables for the active database user.
Method of the class: WP_Debug_Data{}
No Hooks.
Returns
Int. The size of the database, in bytes.
Usage
$result = WP_Debug_Data::get_database_size();
Notes
- Global. wpdb.
$wpdbWordPress database abstraction object.
Changelog
| Since 5.2.0 | Introduced. |
WP_Debug_Data::get_database_size() WP Debug Data::get database size code WP 7.0
public static function get_database_size() {
global $wpdb;
$size = 0;
$rows = $wpdb->get_results( 'SHOW TABLE STATUS', ARRAY_A );
if ( $wpdb->num_rows > 0 ) {
foreach ( $rows as $row ) {
$size += $row['Data_length'] + $row['Index_length'];
}
}
return (int) $size;
}