PHP使用gmdate實(shí)現(xiàn)將一個(gè)UNIX 時(shí)間格式化成GMT文本的方法
更新時(shí)間:2015年03月19日 09:29:29 作者:work24
這篇文章主要介紹了PHP使用gmdate實(shí)現(xiàn)將一個(gè)UNIX 時(shí)間格式化成GMT文本的方法,實(shí)例分析了php中g(shù)mdate函數(shù)的功能及使用技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
本文實(shí)例講述了PHP使用gmdate實(shí)現(xiàn)將一個(gè)UNIX 時(shí)間格式化成GMT文本的方法。分享給大家供大家參考。具體分析如下:
語(yǔ)法如下:
string gmdate (string $Format) string gmdate (string $Format, int $Time)
演示代碼
<?php
echo "When this page was loaded,\n";
echo 'It was then ', gmdate ('r'), "\n";
echo 'The currend gmdate was ', gmdate ('F j, Y'), "\n";
echo 'The currend gmdate was ', gmdate ('M j, Y'), "\n";
echo 'The currend gmdate was ', gmdate ('m/d/y'), "\n";
echo 'The currend gmdate was the ', gmdate ('jS \o\f M, Y'), "\n";
echo 'The currend time was ', gmdate ('g:i:s A T'), "\n";
echo 'The currend time was ', gmdate ('H:i:s O'), "\n";
echo gmdate ('Y');
gmdate ('L')?(print ' is'):(print ' is not');
echo " a leap year\n";
echo time ('U'), " seconds had elapsed since January 1, 1970.\n";
?>
輸出結(jié)果如下:
When this page was loaded, It was then Sun, 27 Dec 2009 13:08:53 +0000 The currend gmdate was December 27, 2009 The currend gmdate was Dec 27, 2009 The currend gmdate was 12/27/09 The currend gmdate was the 27th of Dec, 2009 The currend time was 1:08:53 PM GMT The currend time was 13:08:53 +0000 2009 is not a leap year 1261919333 seconds had elapsed since January 1, 1970.
希望本文所述對(duì)大家的php程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:
- php Smarty date_format [格式化時(shí)間日期]
- php格式化時(shí)間戳顯示友好的時(shí)間實(shí)現(xiàn)思路及代碼
- php自定義的格式化時(shí)間示例代碼
- php格式化時(shí)間戳
- PHP獲取當(dāng)前日期和時(shí)間及格式化方法參數(shù)
- PHP+Mysql日期時(shí)間如何轉(zhuǎn)換(UNIX時(shí)間戳和格式化日期)
- php格式化日期和時(shí)間格式化示例分享
- PHP格式化顯示時(shí)間date()函數(shù)代碼
- php時(shí)間戳格式化顯示友好的時(shí)間函數(shù)分享
- PHP日期函數(shù)date格式化UNIX時(shí)間的方法
- PHP常用函數(shù)之格式化時(shí)間操作示例
相關(guān)文章
php實(shí)現(xiàn)的微信紅包算法分析(非官方)
這篇文章主要介紹了php實(shí)現(xiàn)的微信紅包算法,以實(shí)例形式分析了拼手氣紅包的相關(guān)隨機(jī)算法技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-09-09
php字符串中轉(zhuǎn)義成特殊字符實(shí)例講解
在本篇文章里小編給大家分享的是一篇關(guān)于php字符串中轉(zhuǎn)義成特殊字符實(shí)例講解內(nèi)容,對(duì)此有興趣的朋友們可以學(xué)習(xí)下。2021-02-02
PHP實(shí)現(xiàn)向關(guān)聯(lián)數(shù)組指定的Key之前插入元素的方法
這篇文章主要介紹了PHP實(shí)現(xiàn)向關(guān)聯(lián)數(shù)組指定的Key之前插入元素的方法,涉及php針對(duì)數(shù)組的遍歷、判斷、獲取、插入等相關(guān)操作技巧,需要的朋友可以參考下2017-06-06
php轉(zhuǎn)換上傳word文件為PDF的方法【基于COM組件】
這篇文章主要介紹了php轉(zhuǎn)換上傳word文件為PDF的方法,結(jié)合實(shí)例形式分析了php基于COM組件針對(duì)word文件的格式轉(zhuǎn)換相關(guān)操作技巧,需要的朋友可以參考下2019-06-06

