PHP code example of travail / time-chronograph

1. Go to this page and download the library: Download travail/time-chronograph 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/ */

    

travail / time-chronograph example snippets



use \Time\Chronograph;

ph();
$chrono->start();

$chrono->mark('before_do_something');
/* Do something */
$chrono->mark('after_do_something');

$chrono->stop();

$diff = $chrono->diff('before_do_something', 'after_do_something');
echo sprintf("Took %.3f to do something", $diff);

$total = $chrono->total();
echo sprintf("Took %.3f seconds\n", $total);
$total_in_micro_seconds = $chrono->total(6);
echo sprintf("Took %.6f seconds\n", $total_in_micro_seconds);