发布于 5年前
php 秒毫秒互转
function msec_to_sec($timestamp,$type='msec'){
if($type=='msec'){
return sprintf('%.0f', $timestamp*1000);
}else{
return sprintf('%.0f', $timestamp/1000);
}
}
function msec_to_sec($timestamp,$type='msec'){
if($type=='msec'){
return sprintf('%.0f', $timestamp*1000);
}else{
return sprintf('%.0f', $timestamp/1000);
}
}