MAPG-184 measure runtime and show in web output
This commit is contained in:
parent
b4769b62dd
commit
9c9edcbbd1
2
main.php
2
main.php
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
define('SCRIPT_STARTED', hrtime(true));
|
||||
|
||||
require 'vendor/autoload.php';
|
||||
|
||||
const ROOT = __DIR__;
|
||||
|
@ -19,6 +19,8 @@ class HtmlContent extends ContentBase
|
||||
$content = ob_get_contents();
|
||||
ob_end_clean();
|
||||
|
||||
$content .= '<!-- __debug__runtime: ' . round((hrtime(true) - SCRIPT_STARTED) / 1e+6, 1) . ' -->';
|
||||
|
||||
return $content;
|
||||
}
|
||||
|
||||
|
@ -9,6 +9,8 @@ class JsonContent extends ContentBase
|
||||
|
||||
public function &render(): string
|
||||
{
|
||||
$this->data['__debug__runtime'] = round((hrtime(true) - SCRIPT_STARTED) / 1e+6, 1);
|
||||
|
||||
$content = json_encode($this->data);
|
||||
|
||||
return $content;
|
||||
|
Loading…
Reference in New Issue
Block a user