Skip to content

Instantly share code, notes, and snippets.

@tyurderi
Created April 6, 2016 14:04
Show Gist options
  • Save tyurderi/89ee8df0ffedd56bdb023a79193d4e0a to your computer and use it in GitHub Desktop.
Save tyurderi/89ee8df0ffedd56bdb023a79193d4e0a to your computer and use it in GitHub Desktop.
<?php
function t()
{
static $time = null;
if($time !== null)
{
$result = round((microtime(true) - $time) * 1000, 4) . 'ms';
$time = null;
return $result;
}
else
{
$time = microtime(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment