PHP使用gmdate實(shí)現(xiàn)將一個UNIX 時間格式化成GMT文本的方法
更新時間:2015年03月19日 09:29:29 作者:work24
這篇文章主要介紹了PHP使用gmdate實(shí)現(xiàn)將一個UNIX 時間格式化成GMT文本的方法,實(shí)例分析了php中g(shù)mdate函數(shù)的功能及使用技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實(shí)例講述了PHP使用gmdate實(shí)現(xiàn)將一個UNIX 時間格式化成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ì)有所幫助。
相關(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),具有一定的參考借鑒價值,需要的朋友可以參考下2014-11-11PHP簡單實(shí)現(xiàn)記錄網(wǎng)站訪問量功能示例
這篇文章主要介紹了PHP簡單實(shí)現(xiàn)記錄網(wǎng)站訪問量功能,涉及php針對文件加鎖讀寫及日期時間轉(zhuǎn)換等相關(guān)操作技巧,需要的朋友可以參考下2018-06-06