Home > php教程 > PHP源码 > body text

Convert timestamp to time format, convert time format to xx hours ago

大家讲道理
Release: 2016-11-08 11:31:36
Original
1208 people have browsed it


mysql时间戳传到前台,百度的那些都转换代码都不可用。此代码片段是从一个在线转换网站扣的。

/**
 * 将时间转换为 xx小时前
 * @param {Object} pTime
 */
function jsDateDiff(pTime) {
    var d_minutes, d_hours, d_days, d;
    var timeNow = parseInt(new Date().getTime() / 1000);
    pTime_new = new Date(pTime).getTime() / 1000;
    d = timeNow - pTime_new;
    d_days = parseInt(d / 86400);
    d_hours = parseInt(d / 3600);
    d_minutes = parseInt(d / 60);
    if (d_days > 0 && d_days < 4) {
        return d_days + "天前";
    } else if (d_days <= 0 && d_hours > 0) {
        return d_hours + "小时前";
    } else if (d_hours <= 0 && d_minutes > 0) {
        return d_minutes + "分钟前";
    } else {
        return pTime;
    }
}
Copy after login
function format(timestamp) {
    var time = new Date(timestamp);
    var year = time.getFullYear();
    var month = (time.getMonth() + 1) > 9 && (time.getMonth() + 1) || (&#39;0&#39; + (time.getMonth() + 1)) var date = time.getDate() > 9 && time.getDate() || (&#39;0&#39; + time.getDate()) var hour = time.getHours() > 9 && time.getHours() || (&#39;0&#39; + time.getHours()) var minute = time.getMinutes() > 9 && time.getMinutes() || (&#39;0&#39; + time.getMinutes()) var second = time.getSeconds() > 9 && time.getSeconds() || (&#39;0&#39; + time.getSeconds()) var YmdHis = year + &#39;-&#39; + month + &#39;-&#39; + date + &#39; &#39; + hour + &#39;:&#39; + minute + &#39;:&#39; + second;
    return YmdHis;
}
var timestamp = &#39;1466076718000&#39;;
timestamp = timestamp.replace(/^\s+|\s+$/, &#39;&#39;);
if (/^\d{10}$/.test(timestamp)) {
    timestamp *= 1000;
} else if (/^\d{13}$/.test(timestamp)) {
    timestamp = parseInt(timestamp);
} else {
    alert(&#39;时间戳格式不正确!&#39;);
    return;
}
var YmdHis = format(timestamp);
alert(YmdHis);
Copy after login


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!