Package Data | |
---|---|
Maintainer Username: | Bart van Hoekelen |
Package Create Date: | 2017-03-13 |
Package Last Update: | 2024-06-04 |
Home Page: | |
Language: | PHP |
License: | Apache-2.0 |
Last Refreshed: | 2024-11-21 03:00:23 |
Package Statistics | |
---|---|
Total Downloads: | 632,116 |
Monthly Downloads: | 12,710 |
Daily Downloads: | 301 |
Total Stars: | 520 |
Total Watchers: | 23 |
Total Forks: | 37 |
Total Open Issues: | 7 |
// Add namespace at the top
use Performance\Performance;
// Set measure point
Performance::point();
//
// Run test code
//
// Finish all tasks and show test results
Performance::results();
See the function overview for more functions.
See how to export data.
See more info over data review.
Set measuring point with or without label
Performance::point( <optional:label> );
Finish previous measuring point
Performance::finish();
Finish all measuring points and return test results
Performance::results();
See the function overview for more.
Run the performance test for the command line
// Normal
$ php your_script.php
// Or live version
$ php your_script.php --live
If you have any suggestions to improve this performance tool? Please add your feature, bug or improvement to the BACKLOG.dm. Or create a issues.
Get PHP performance tool by running the Composer command in the command line.
$ composer require bvanhoekelen/performance
Open your file for the performance test.
// Add namespace at the top
use Performance\Performance;
// Set measure point
Performance::point();
//
// Run test code
//
// Finish all tasks and show test results
Performance::results();
Get PHP performance by running the Composer command in the command line.
$ composer require bvanhoekelen/performance
Open your file for the performance test.
// Require vender autoload
require_once('../vendor/autoload.php');
// Add namespace at the top
use Performance\Performance;
// Set measure point
Performance::point();
//
// Run test code
//
// Finish all tasks and show test results
Performance::results();