Skip to content

Instantly share code, notes, and snippets.

@alphaolomi
Created October 29, 2019 19:09
Show Gist options
  • Save alphaolomi/5e084873a6892fe6a4a7177a9baf165e to your computer and use it in GitHub Desktop.
Save alphaolomi/5e084873a6892fe6a4a7177a9baf165e to your computer and use it in GitHub Desktop.
PHP Timer
<?php
$start = microtime(true);
// Do stuff
dd(microtime(true) - $start);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment