ActionScript 3 将日期转换为时间间隔
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 将日期转换为时间间隔相关的知识,希望对你有一定的参考价值。
private function formatDate(d:Date):String
{
var now:Date = new Date();
var diff:Number = (now.time - d.time) / 1000; // convert to seconds
if (diff < 60) // just posted
{
return "Just posted";
}
else if (diff < 3600) // n minutes ago
{
return (Math.round(diff / 60) + " minutes ago");
}
else if (diff < 86400) // n hours ago
{
return (Math.round(diff / 3600) + " hours ago");
}
else // n days ago
{
return (Math.round(diff / 86400) + " days ago");
}
}
以上是关于ActionScript 3 将日期转换为时间间隔的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 Flash:将毫秒转换为时间码
php怎么将指定日期转换为时间戳
将数据帧从时间戳转换为时间间隔
vb 时间戳转换成时间
将 TimeInterval 转换为字符串 <del>String 转换为时间间隔</del>
php怎么将指定日期转换为时间戳