]> git.joonet.de Git - adminer.git/commitdiff
Simplify format_time()
authorJakub Vrana <jakub@vrana.cz>
Fri, 9 Aug 2013 00:18:39 +0000 (17:18 -0700)
committerJakub Vrana <jakub@vrana.cz>
Fri, 9 Aug 2013 00:20:18 +0000 (17:20 -0700)
adminer/include/functions.inc.php
adminer/sql.inc.php

index 5b42df9f7cf8d2941166867e19226bb25f9029ae..c5f3af9731cb2bde1b671758d5feda53204922e8 100644 (file)
@@ -522,9 +522,9 @@ function query_redirect($query, $location, $message, $redirect = true, $execute
        global $connection, $error, $adminer;
        $time = "";
        if ($execute) {
-               $start = microtime();
+               $start = microtime(true);
                $failed = !$connection->query($query);
-               $time = "; -- " . format_time($start, microtime());
+               $time = "; -- " . format_time($start, microtime(true));
        }
        $sql = "";
        if ($query) {
@@ -551,10 +551,10 @@ function queries($query = null) {
                // return executed queries without parameter
                return implode("\n", $queries);
        }
-       $start = microtime();
+       $start = microtime(true);
        $return = $connection->query($query);
        $queries[] = (preg_match('~;$~', $query) ? "DELIMITER ;;\n$query;\nDELIMITER " : $query)
-               . "; -- " . format_time($start, microtime());
+               . "; -- " . format_time($start, microtime(true));
        return $return;
 }
 
@@ -584,12 +584,12 @@ function queries_redirect($location, $message, $redirect) {
 }
 
 /** Format time difference
-* @param string output of microtime()
-* @param string output of microtime()
+* @param string output of microtime(true)
+* @param string output of microtime(true)
 * @return string HTML code
 */
 function format_time($start, $end) {
-       return lang('%.3f s', max(0, array_sum(explode(" ", $end)) - array_sum(explode(" ", $start))));
+       return lang('%.3f s', max(0, $end - $start));
 }
 
 /** Remove parameter from query string
index e58131549178f91f746987e40a71f0ab5403923c..72afbea75d134520718aa7cc03dc13f0382b753d 100644 (file)
@@ -57,7 +57,7 @@ if (!$error && $_POST) {
                $errors = array();
                $line = 0;
                $parse = '[\'"' . ($jush == "sql" ? '`#' : ($jush == "sqlite" ? '`[' : ($jush == "mssql" ? '[' : ''))) . ']|/\\*|-- |$' . ($jush == "pgsql" ? '|\\$[^$]*\\$' : '');
-               $total_start = microtime();
+               $total_start = microtime(true);
                parse_str($_COOKIE["adminer_export"], $adminer_export);
                $dump_format = $adminer->dumpFormat();
                unset($dump_format["sql"]);
@@ -100,7 +100,7 @@ if (!$error && $_POST) {
                                                        ob_flush();
                                                        flush(); // can take a long time - show the running query
                                                }
-                                               $start = microtime(); // microtime(true) is available since PHP 5
+                                               $start = microtime(true);
                                                //! 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);
@@ -108,7 +108,7 @@ if (!$error && $_POST) {
 
                                                do {
                                                        $result = $connection->store_result();
-                                                       $end = microtime();
+                                                       $end = microtime(true);
                                                        $time = " <span class='time'>(" . format_time($start, $end) . ")</span>"
                                                                . (strlen($q) < 1000 ? " <a href='" . h(ME) . "sql=" . urlencode(trim($q)) . "'>" . lang('Edit') . "</a>" : "") // 1000 - maximum length of encoded URL in IE is 2083 characters
                                                        ;
@@ -172,7 +172,7 @@ if (!$error && $_POST) {
                        echo "<p class='message'>" . lang('No commands to execute.') . "\n";
                } elseif ($_POST["only_errors"]) {
                        echo "<p class='message'>" . lang('%d query(s) executed OK.', $commands - count($errors));
-                       echo " <span class='time'>(" . format_time($total_start, microtime()) . ")</span>\n";
+                       echo " <span class='time'>(" . format_time($total_start, microtime(true)) . ")</span>\n";
                } elseif ($errors && $commands > 1) {
                        echo "<p class='error'>" . lang('Error in query') . ": " . implode("", $errors) . "\n";
                }