Skip to content

Instantly share code, notes, and snippets.

@Jason-cqtan
Created April 25, 2019 02:51
Show Gist options
  • Save Jason-cqtan/279f4bbd007bc391eec95188dceb2a0c to your computer and use it in GitHub Desktop.
Save Jason-cqtan/279f4bbd007bc391eec95188dceb2a0c to your computer and use it in GitHub Desktop.
php获取当前时间毫秒
<?php
//method 1
function msectime() {
list($msec, $sec) = explode(' ', microtime());
return (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000);
}
//method 2
function msetime2()
{
return (int)(microtime(true)*1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment