function getMsec(){//返回毫秒时间戳
    $arr = explode(' ',microtime());
    $hm = 0;
    foreach($arr as $v){
        $hm += floor($v * 1000);
    }
    return $hm;
}

 

相关文章: