php日期處理函數(計算時間差,轉換時間戳記日期)_PHP教程

來源:互聯網
上載者:User
php教程 轉換時間戳記為常用的日期格式與計算時間差:預設傳回型別為“分鐘”
function trans_time($timestamp){
if($timestamp < 1) echo '無效的unix時間戳記';
else return date("y-m-d h:i:s",$timestamp);
}

//擷取ip
function get_ip() {
if ($_server["http_x_forwarded_for"])
$ip = $_server["http_x_forwarded_for"];
else if ($_server["http_client_ip"])
$ip = $_server["http_client_ip"];
else if ($_server["remote_addr"])
$ip = $_server["remote_addr"];
else if (getenv("http_x_forwarded_for"))
$ip = getenv("http_x_forwarded_for");
else if (getenv("http_client_ip"))
$ip = getenv("http_client_ip");
else if (getenv("remote_addr"))
$ip = getenv("remote_addr");
else
$ip = "unknown";
return $ip;
}

//計算時間差:預設傳回型別為“分鐘”
//$old_time 只能是時間戳記,$return_type 為 h 是小時,為 s 是秒
function timelag($old_time,$return_type='m'){
if($old_time < 1){
echo '無效的unix時間戳記';
}else{
switch($return_type){
case 'h':
$type = 3600; break;
case 'm':
$type = 60; break;
case 's':
$type = 1; break;
case '':
$type = 60; break;
}
$dif = round( (time()-$old_time)/$type ) ;
return $dif;
}
}

http://www.bkjia.com/PHPjc/632349.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/632349.htmlTechArticlephp教程 轉換時間戳記為常用的日期格式與計算時間差:預設傳回型別為分鐘 function trans_time($timestamp){ if($timestamp 1) echo '無效的unix時間戳記'; e...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.