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文本的方法。分享給大家供大家參考。具體分析如下:
語法如下:
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.
希望本文所述對大家的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去除換行符的方法小結(jié)(PHP_EOL變量的使用)
本來在unix世界換行就用/n來代替,但是windows為了體現(xiàn)他的不同,就用/r/n,更有意思的是在mac中用/r。因此unix系列用 /n,windows系列用 /r/n,mac用 /r,這樣就用你寫的程序在不同的平臺上運(yùn)行有著不少的麻煩2013-02-02php number_format() 函數(shù)通過千位分組來格式化數(shù)字的實(shí)現(xiàn)代碼
以下是對php中的number format()函數(shù)通過千位分組來格式化數(shù)字的實(shí)現(xiàn)代碼進(jìn)行了詳細(xì)的分析介紹,需要的朋友可以過來參考下2013-08-08php中call_user_func函數(shù)使用注意事項(xiàng)
這篇文章主要介紹了php中call_user_func函數(shù)使用注意事項(xiàng),較為詳細(xì)的講述了call_user_func函數(shù)的用法實(shí)例與注意事項(xiàng),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2014-11-11PHP簡單實(shí)現(xiàn)記錄網(wǎng)站訪問量功能示例
這篇文章主要介紹了PHP簡單實(shí)現(xiàn)記錄網(wǎng)站訪問量功能,涉及php針對文件加鎖讀寫及日期時(shí)間轉(zhuǎn)換等相關(guān)操作技巧,需要的朋友可以參考下2018-06-06