Skip to main content

track

Time Track

Simple PHP Helper to Analyze Execution Time of your PHP Scripts. i found source at here from https://github.com/leo-lobster/php-timetrack and i keep save in my repo.

Instantiate an object

use Nagara\Src\TimeTracker;

$timer = new TimeTracker("start"); // Example Description

Add more timepoints if necessary

// Some Code
$timer->add("All Includes Loaded");

// Some Code
$timer->add("DB Query finished");

// Some Code
$timer->add("Echoing Body");

Show the Results

The HTML Output:

$timer->htmlOut();

The Text Output:

$timer->logPeriods();

The Text Output of raw Timestamps:

$timer->logTimestamps();

The Text Output of String Excecution Time:

$timer->calculate();