Skip to content

Instantly share code, notes, and snippets.

@dbwodlf3
Created November 23, 2021 10:07
Show Gist options
  • Select an option

  • Save dbwodlf3/e908ff123a121e49ce996992723e4905 to your computer and use it in GitHub Desktop.

Select an option

Save dbwodlf3/e908ff123a121e49ce996992723e4905 to your computer and use it in GitHub Desktop.
PHP Performance Time Check.
<?php
$global_time = new HRTime\StopWatch;
$global_time->start();
$time_1 = new HRTime\StopWatch;
$time_1->start();
//**********//
//**********//
$time_1->stop();
$elapsed0 = $time_1->getLastElapsedTime(HRTime\Unit::MILLISECOND);
echo($elapsed0);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment