wordpress / latest / classes / wp_debug_data / get_database_size.html

WP_Debug_Data::get_database_size(): int

Fetches the total size of all the database tables for the active database user.

Return

int The size of the database, in bytes.

Source

File: wp-admin/includes/class-wp-debug-data.php. View all references

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;
}

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
5.2.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_debug_data/get_database_size