dev-master
9999999-devKronos is a PHP library, which allows to calculate the execution time of a page and code blocks (called CheckPoint), with an accuracy up to 1 μs
MIT
Kronos is a PHP library, which allows to calculate the execution time of a page and code blocks (called CheckPoint), with an accuracy up to 1 μs
Kronos is a PHP library, which allows to calculate the execution time of a page and code blocks (called CheckPoint), with an accuracy up to 1 μs, (*1)
Install the latest version with, (*2)
$ composer require emoretti/kronos ^dev-master
, (*3)
no configuration needed
, (*4)
Create an instance of Kronos()
class in the start of your page, passing the page "alias" name and optionally
the initial float timestamp (If not passed kronos calculate for you the timestamp).
At the end of page call the method setMainEnd()
optionally passing the ending float timestamp (If not passed kronos calculate for you the timestamp).
Finally you can call the method getReport()
to render under your page a final report, or call the method getReportRaw()
to get the array with all the data.
The getReport()
accept in input a dateFormat in PHP style,, (*5)
setMainEnd(microtime(true)); $myKronos->getReport(); // OR $myKronos->getReportRaw(); ?>
After declare the instance of Kronos()
, (*6)
In the middle of your code (where you want), you can insert a checkpoint, which allows you to create other statistics.
To create a checkpoint use the methods startCheckPoints()
and stopCheckPoints()
passing the checkpoint alias (it will be the key of your checkpoint), and optionally the float timestamp (If not passed kronos calculate for you the timestamp).
, (*7)
startCheckPoints("FirstCheckPoint",microtime(true)); usleep(mt_rand(500, 3000)); $myKronos->stopCheckPoints("FirstCheckPoint",microtime(true)); [... YOUR CODE ...] $myKronos->setMainEnd(microtime(true)); $myKronos->getReport(); // OR $myKronos->getReportRaw(); ?>
Kronos results can be:, (*8)
Rendered in bottom of the examined page, (*9)
$myKronos->getReport();
Returned in array structure (or json if you pass the first argument true), (*10)
\\Array structure output $myKronos->getReportRaw(); \\Json structure output $myKronos->getReportRaw(true);
Saved in a file (the file will have a json inside), (*11)
$myKronos->saveReportData(__DIR__ . "/report.json");
If you save data for get the report later, you can render that use the static method Kronos::renderReport()
passing $reportName and $reportData, (*12)
use emoretti\kronos\Kronos; require_once("src/Kronos.php"); Kronos::renderReport("TestReport", file_get_contents(__DIR__."/report.json"));
Kronos will render the data through is template engine KronosTemplate()
, by default the template is: src/template/KronosTemplate.php
(it use Bootstrap.min.css) , you can modify it as you want (
Be careful not to change the variable names in the template), (*13)
You can specify your prefered date format for those methods:, (*14)
Kronos will try automatically to determine his execution time, it will be presented automatically in the final report, may be usefull to determine how time it is used by the class itself.
N.B. Kronos attempts to calculate its execution time. But these times are to be considered as APPROXIMATE. Remember that : 0.001 ms == 1 µs (In 1 μs the light runs exactly 299.792458 meters)., (*15)
Ettore Moretti - info@ettoremoretti.com - https://twitter.com/emoretticom - https://www.facebook.com/emoretticom/, (*16)
href-count is licensed under the MIT License - see the LICENSE
file for details, (*17)
Kronos is a PHP library, which allows to calculate the execution time of a page and code blocks (called CheckPoint), with an accuracy up to 1 μs
MIT