Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 827 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 827 Bytes

Measure

A simple package for measuring the time spent on script execution. Also to measure the memory spent.

Install

Run:

    composer require --dev adiafora/measure

Usage

Usage facade

First you need to call the timeStart() method.

    timeStart();

From this moment, the countdown of time and memory spent will begin. Next, you can call the timeDump() or timeDd() method anywhere in your application.

    timeDump();
    // or
    timeDd();

You can continue to call one of the information output methods. You can also restart the counter by calling the timeStart() method.

License

The MIT License (MIT). Please see License File for more information.