basic profiling information in backend.php
This commit is contained in:
parent
fc69e64169
commit
406d948993
2 changed files with 10 additions and 0 deletions
|
@ -10,6 +10,8 @@
|
||||||
require_once "functions.php";
|
require_once "functions.php";
|
||||||
require_once "magpierss/rss_fetch.inc";
|
require_once "magpierss/rss_fetch.inc";
|
||||||
|
|
||||||
|
$script_started = getmicrotime();
|
||||||
|
|
||||||
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
||||||
|
|
||||||
if (!$link) {
|
if (!$link) {
|
||||||
|
@ -1296,3 +1298,6 @@
|
||||||
|
|
||||||
db_close($link);
|
db_close($link);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<!-- <?= sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
|
||||||
|
|
||||||
|
|
|
@ -420,4 +420,9 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getmicrotime() {
|
||||||
|
list($usec, $sec) = explode(" ",microtime());
|
||||||
|
return ((float)$usec + (float)$sec);
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue