]> git.joonet.de Git - adminer.git/commitdiff
Save bytes
authorJakub Vrana <jakub@vrana.cz>
Wed, 22 Jun 2011 14:50:38 +0000 (16:50 +0200)
committerJakub Vrana <jakub@vrana.cz>
Fri, 24 Jun 2011 07:47:17 +0000 (09:47 +0200)
adminer/include/editing.inc.php
adminer/sql.inc.php

index b0b1b5e28205511ac235b641c3539971c4fe759d..931f8dc846187f6ff91e63cab5d994c0409f770a 100644 (file)
@@ -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 " <span class='time'>(" . lang('%.3f s', max(0, $end[0] - $start[0] + $end[1] - $start[1])) . ")</span>";
+       return " <span class='time'>(" . lang('%.3f s', max(0, array_sum(explode(" ", $end)) - array_sum(explode(" ", $start)))) . ")</span>";
 }
 
 /** Print table columns for type edit
index 09ca7b0c5c157172b091f8322a7e41067a72a471..188c59e9381d0e9595dc7386d659f10d4861d42a 100644 (file)
@@ -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 ? " <a href='" . h(ME) . "sql=" . urlencode(trim($q)) . "'>" . lang('Edit') . "</a>" : ""); // 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 "<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)) . format_time($total_start, explode(" ", microtime())) . "\n";
+                       echo "<p class='message'>" . lang('%d query(s) executed OK.', $commands - count($errors)) . format_time($total_start, microtime()) . "\n";
                } elseif ($errors && $commands > 1) {
                        echo "<p class='error'>" . lang('Error in query') . ": " . implode("", $errors) . "\n";
                }