|
3 && $tbl_type != "INNODB" && isset($showtable)) {
// Gets some sizes
list($data_size, $data_unit) = format_byte_down($showtable['Data_length']);
list($index_size, $index_unit) = format_byte_down($showtable['Index_length']);
if (!empty($showtable['Data_free'])) {
list($free_size, $free_unit) = format_byte_down($showtable['Data_free']);
}
list($effect_size, $effect_unit) = format_byte_down($showtable['Data_length'] + $showtable['Index_length'] - $showtable['Data_free']);
list($tot_size, $tot_unit) = format_byte_down($showtable['Data_length'] + $showtable['Index_length']);
// Displays them
if ($index_count > 0) {
echo ' ' . "\n"; } ?> |
|
|