ogzcakar / basic-process-time
The BasicProcessTime class allows you to see how long the processes you write work.
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/ogzcakar/basic-process-time
This package is auto-updated.
Last update: 2025-12-19 13:13:40 UTC
README
Description : The "BasicProcessTime" class allows you to see how long the processes you write work.
Installation
composer require ogzcakar/basic-process-time
Usage
To print the processing time on the screen
<?php processTime('testKey'); for ($i = 0; $i <= 200000000; $i++){} echo processTime('testKey');
Or if you want to log the processing time
<?php processTime('testFile'); for ($i = 0; $i <= 200000000; $i++){} processTime('testFile', 'fileName.txt'); // Or echo processTime('testFile', 'fileName.txt');
For Help and Contact
Mail : ogzcakar@gmail.com