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

Definition and usage of PHP function microtime() timestamp

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-25 08:55:49
Original
977 people have browsed it
  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 of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template