首頁 > 後端開發 > php教程 > php時間計算幾天幾小時函數

php時間計算幾天幾小時函數

WBOY
發布: 2016-07-29 09:03:41
原創
1259 人瀏覽過
<?php
/*
* 计算时间
* @param String $timestamp 需要被减的时间
* @param String $current_time 当前时间戳或者需要计算的时间戳
* @returne String 计算好的时间
*/
function tmspan($timestamp,$current_time=0){
    $timestamp = strtotime($timestamp);
    if(!$current_time) $current_time=time();
    $span=$current_time-$timestamp;
    if($span<60){
        return "刚刚";
    }else if($span<3600){
        return intval($span/60)."分钟前";
    }else if($span<24*3600){
        return intval($span/3600)."小时前";
    }else if($span<(7*24*3600)){
        return intval($span/(24*3600))."天前";
    }else{
        return date('Y-m-d',$timestamp);
    }
 }
登入後複製

我們很多時候可以使用到這個函數,主要用於計算文章發佈時間,評論發表時間等等計算。

以上就介紹了php時間計算幾天幾小時函數,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板