From 406d948993c54b78260f42cc544f893eb6e75793 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 23 Oct 2005 16:48:58 +0100 Subject: basic profiling information in backend.php --- functions.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 888b0e6e8..2176b8b77 100644 --- a/functions.php +++ b/functions.php @@ -420,4 +420,9 @@ } + function getmicrotime() { + list($usec, $sec) = explode(" ",microtime()); + return ((float)$usec + (float)$sec); + } + ?> -- cgit v1.2.3