aslamkv/php-benchmark

Lightweight PHP library to measure memory usage and time taken for script execution

This package's canonical repository appears to be gone and the package has been frozen as a result.

1.1.0 2021-06-14 05:06 UTC

This package is auto-updated.

Last update: 2024-07-14 11:21:53 UTC


README

Lightweight PHP library to measure memory usage and time taken for script execution

Installation

composer require aslamkv/php-benchmark

Usage

PhpBenchmark\PhpBenchmark::run(function(){
  $a=[];
  $size=1000;
  for($i=0;$i<$size;$i++){
    $a[]='aaa'.$i;
  }
});

Output

image