PHP - Microtime

时间:2013-03-20 09:06:51

标签: php microtime

如何生成php microtime,为什么只返回13-15个数字,如果我像这样手动写时间:

<?php
$time = date('SAMPLE').date('SAMPLE').date('SAMPLE').date('SAMPLE').date('SAMPLE');
$TIME = microtime(true);
?>

和microtime看起来太短,无法包含所有日期(年,月,日,小时,分钟,秒) microtime真的很独特吗?

请提出你的意见......

由于

1 个答案:

答案 0 :(得分:3)

microtime()以微秒返回当前的Unix时间戳。此功能仅在支持gettimeofday()系统调用的操作系统上可用。

如果您想将时间戳转换为人类可读的日期,请查看date()函数。