Home >Backend Development >PHP Tutorial >Definition and usage of PHP function microtime() timestamp

Definition and usage of PHP function microtime() timestamp

WBOY
WBOYOriginal
2016-07-25 08:55:49942browse
  1. echo (microtime()); //0.25139300 1138197510
Copy code

Examples of common usage of PHP function microtime():

  1. $mtime=explode(' ',microtime());
  2. $startTime=$mtime[1]+$mtime[0];
  3. echo $startTime; //1385976275.33
Copy code


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn