首页 > 问答 > 正文
现在获取了系统的两个不同的时间戳,有没有办法把这个差值转换成秒数加毫秒的形式??
PHP中文网2017-05-16 13:11:51
function getMillisecond() { list($t1, $t2) = explode(' ', microtime()); return (float)sprintf('%.0f',(floatval($t1)+floatval($t2))*1000); } echo getMillisecond();
网上找到个函数你试试吧
怪我咯2017-05-16 13:11:51
PHP的时间戳只能到秒级别,你要是加上毫秒的话,就给末尾补上 000