From c40446509e5e53530ac45847e5088f09d1804ab0 Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Fri, 16 Nov 2018 13:57:34 +0100 Subject: replace horribly named function with slight less horribly named one --- it_url.class | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'it_url.class') diff --git a/it_url.class b/it_url.class index d196c54..02ac840 100644 --- a/it_url.class +++ b/it_url.class @@ -343,7 +343,7 @@ function get_multi($p=null) $retries[$key] = 0; } - $start = microtime(true); + $start = gettimeofday(true); # curl_multi loop copied from example at http://php.net/manual/en/function.curl-multi-exec.php $active = null; @@ -368,7 +368,7 @@ function get_multi($p=null) $closehandle($key); - EDC('reqtimings', $key, $info['result'], (microtime(true) - $start) * 1000); + EDC('reqtimings', $key, $info['result'], (gettimeofday(true) - $start) * 1000); if ($info['result'] == CURLE_OK) $results_unordered[$key] = $content; else if($retries[$key]++ < $p['retries']) -- cgit v1.2.3