From 0060c608d68c28d55c763582b509b64c6166425d Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 22 Jun 2011 16:50:38 +0200 Subject: [PATCH] Save bytes --- adminer/include/editing.inc.php | 6 +++--- adminer/sql.inc.php | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/adminer/include/editing.inc.php b/adminer/include/editing.inc.php index b0b1b5e2..931f8dc8 100644 --- a/adminer/include/editing.inc.php +++ b/adminer/include/editing.inc.php @@ -118,12 +118,12 @@ function textarea($name, $value, $rows = 10, $cols = 80) { } /** Format time difference -* @param array ($sec, $sec) -* @param array ($sec, $sec) +* @param string output of microtime() +* @param string output of microtime() * @return string HTML code */ function format_time($start, $end) { - return " (" . lang('%.3f s', max(0, $end[0] - $start[0] + $end[1] - $start[1])) . ")"; + return " (" . lang('%.3f s', max(0, array_sum(explode(" ", $end)) - array_sum(explode(" ", $start)))) . ")"; } /** Print table columns for type edit diff --git a/adminer/sql.inc.php b/adminer/sql.inc.php index 09ca7b0c..188c59e9 100644 --- a/adminer/sql.inc.php +++ b/adminer/sql.inc.php @@ -52,7 +52,7 @@ if (!$error && $_POST) { $commands = 0; $errors = array(); $parse = '[\'`"]' . ($jush == "pgsql" ? '|\\$[^$]*\\$' : ($jush == "mssql" || $jush == "sqlite" ? '|\\[' : '')) . '|/\\*|-- |#'; //! ` and # not everywhere - $total_start = explode(" ", microtime()); + $total_start = microtime(); parse_str($_COOKIE["adminer_export"], $adminer_export); $dump_format = $adminer->dumpFormat(); unset($dump_format["sql"]); @@ -90,14 +90,14 @@ if (!$error && $_POST) { ob_flush(); flush(); // can take a long time - show the running query } - $start = explode(" ", microtime()); // microtime(true) is available since PHP 5 + $start = microtime(); // microtime(true) is available since PHP 5 //! don't allow changing of character_set_results, convert encoding of displayed query if ($connection->multi_query($q) && is_object($connection2) && preg_match("~^$space*USE\\b~isU", $q)) { $connection2->query($q); } do { $result = $connection->store_result(); - $end = explode(" ", microtime()); + $end = microtime(); $time = format_time($start, $end) . (strlen($q) < 1000 ? " " . lang('Edit') . "" : ""); // 1000 - maximum length of encoded URL in IE is 2083 characters if ($connection->error) { echo ($_POST["only_errors"] ? $print : ""); @@ -150,7 +150,7 @@ if (!$error && $_POST) { if ($empty) { echo "

" . lang('No commands to execute.') . "\n"; } elseif ($_POST["only_errors"]) { - echo "

" . lang('%d query(s) executed OK.', $commands - count($errors)) . format_time($total_start, explode(" ", microtime())) . "\n"; + echo "

" . lang('%d query(s) executed OK.', $commands - count($errors)) . format_time($total_start, microtime()) . "\n"; } elseif ($errors && $commands > 1) { echo "

" . lang('Error in query') . ": " . implode("", $errors) . "\n"; }