From 84eaea96c6d38d11f4ea7531f341122fd34b3906 Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Thu, 7 Nov 2013 00:34:39 -0800 Subject: Simplify the code. No need to worry about the second column, we only need to pad the first one. --- usr/local/www/diag_dns.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'usr/local/www/diag_dns.php') diff --git a/usr/local/www/diag_dns.php b/usr/local/www/diag_dns.php index b737477..98271d1 100644 --- a/usr/local/www/diag_dns.php +++ b/usr/local/www/diag_dns.php @@ -150,8 +150,7 @@ if( ($_POST['host']) && ($_POST['dialog_output']) ) { } function display_host_results ($address,$hostname,$dns_speeds) { - $map_lengths = function($element) { return array(strlen($element[0]), strlen($element[1])); }; - $map_column0 = function($element) { return $element[0]; }; + $map_lengths = function($element) { return strlen($element[0]); }; echo gettext("IP Address") . ": {$address} \n"; echo gettext("Host Name") . ": {$hostname} \n"; @@ -163,10 +162,9 @@ function display_host_results ($address,$hostname,$dns_speeds) { $text_table[] = array(trim($qt['dns_server']), trim($qt['query_time'])); } } - $length_table = array_map($map_lengths, $text_table); - $col0_padlength = max(array_map($map_column0, $length_table)); + $col0_padlength = max(array_map($map_lengths, $text_table)) + 4; foreach ($text_table as $text_row) { - echo str_pad($text_row[0], $col0_padlength + 4) . $text_row[1] . "\n"; + echo str_pad($text_row[0], $col0_padlength) . $text_row[1] . "\n"; } } -- cgit v1.1