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
Requires
- php: >=7.4
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();