Skip to content

Instantly share code, notes, and snippets.

@kythuatwebso
Forked from EfremovMS/render-time.php
Created October 1, 2021 10:31
Show Gist options
  • Save kythuatwebso/2661f6bb12bb081bf7980bace2ba4340 to your computer and use it in GitHub Desktop.
Save kythuatwebso/2661f6bb12bb081bf7980bace2ba4340 to your computer and use it in GitHub Desktop.
PHP render time
<?php
$start = microtime(true);
// /////////////////// //
// CODE //
// /////////////////// //
$end = microtime(true) - $start;
dump("Rendered for [ {$end}s ]");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment