Download the PHP package wizzaro/execution-code-timer without Composer
On this page you can find all versions of the php package wizzaro/execution-code-timer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download wizzaro/execution-code-timer
More information about wizzaro/execution-code-timer
Files in wizzaro/execution-code-timer
Package execution-code-timer
Short Description The library provides an easy way to measure the execution time of the code
License MIT
Homepage https://github.com/Wizzaro/execution-code-timer.git
Informations about the package execution-code-timer
Wizzaro Execution Code Timer
The library provides an easy way to measure the execution time of the code
Sample Usage
Api
Constructor
Parameters:
- startMeasurement - start measurement while creating the object
startMeasurement
Start measurement
Exceptions:
- Throws
Exception
if try started measurement again
hasMeasurementWasStarted
Check is measurement has already started
getExecutionInfo
Parameters:
- format - (OPTIONAL) - execution information format - more information about format structure find on: http://php.net/manual/en/dateinterval.format.php
Return:
- Return information about the execution time of the code based on format
setExecutionInfoFormat
Set default format for information about the execution time of the code
Parameters:
- format - execution information format - more information about format structure find on: http://php.net/manual/en/dateinterval.format.php
getExecutionInfoFormat
Return:
- Return default format for information about the execution time of the code
getExecutionTime
Return:
- Return interval between start measurement time and current time
getStartTime
Return:
- Return start measurement time
Exceptions:
- Throws
Exception
if measurement has not started
getCurrentTime
Return:
- Return current time bassed on microtime
Runing Tests
To run tests:
-
Clone the repository:
- Install dependencies via composer:
If you don't have composer installed, please download it from https://getcomposer.org/download/
- Run the tests using the "test" command shipped in the composer.json:
You can turn on conditional tests with the phpunit.xml file. To do so:
Copy phpunit.xml.dist
file to phpunit.xml
Edit phpunit.xml
to enable any specific functionality you want to test, as well as to provide test values to utilize.