Definition and usage of PHP function microtime() timestamp
WBOYOriginal
2016-07-25 08:55:49942browse
echo (microtime()); //0.25139300 1138197510
Copy code
Examples of common usage of PHP function microtime():
$mtime=explode(' ',microtime());
$startTime=$mtime[1]+$mtime[0];
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