Skip to content

Instantly share code, notes, and snippets.

@erasin
Created August 27, 2013 10:21
Show Gist options
  • Save erasin/6351894 to your computer and use it in GitHub Desktop.
Save erasin/6351894 to your computer and use it in GitHub Desktop.
php 毫秒级别
<?php
function microtime_float()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
echo microtime_float();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment