sbennett/execute

This is a simple project to record script execution times.

v1.0 2015-04-20 12:32 UTC

This package is auto-updated.

Last update: 2024-05-15 20:41:34 UTC


README

This project is just a simple PHP Script Execution.

Usage

<?php

use SamBenne\Execute\Timer;

$timer = Timer::getInstance();
$timer->start('test');

$myTime = $timer->output('test');

// <b>Total Execution Time:</b> 0.4 Secs