摘要: function getMillisecond() {//获取毫秒级时间戳 list($usec, $sec) = explode(" ", microtime()); $usec = str_replace('.', '', $usec); $ctime=substr($sec.$usec,0,17); return ceil($ctime/10000); } ... 阅读全文
posted @ 2018-12-29 14:57 zrn 阅读(119) 评论(0) 推荐(0) 编辑