dotdecay/time-benchy

Benchmark Tool for measuring execution times

Installs: 244

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/dotdecay/time-benchy

v1.0.1 2023-04-28 11:37 UTC

This package is auto-updated.

Last update: 2025-09-28 17:24:24 UTC


README

Small benchmark tool for measuring execution times.

Usage

$timeBenchy = new TimeBenchy();
$timeBenchy->mark('Start');
// [... some code here ...]
$timeBenchy->mark('After function X');
// [... some code here ...]
$timeBenchy->mark('After Database call');
// [... some code here ...]
$timeBenchy->mark('End');
$timeBenchy->printStats();