PHP: getMicroTime


/ Published in: PHP
Save to your folder(s)

Get Micro Time


Copy this code and paste it in your HTML
  1. function getmicrotime(){
  2. list($usec, $sec) = explode(" ",microtime());
  3. return ((float)$usec + (float)$sec);
  4. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.