PHP code example of bvanhoekelen / performance

1. Go to this page and download the library: Download bvanhoekelen/performance library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

bvanhoekelen / performance example snippets


// 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();


Performance::point( <optional:label> );

Performance::finish();

Performance::results();

// Normal
$ php your_script.php

// Or live version
$ php your_script.php --live 

// 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();

// Require vender autoload
op
use Performance\Performance;

// Set measure point
Performance::point();

//
// Run test code
//

// Finish all tasks and show test results
Performance::results();