PHP日期函數(shù)date格式化UNIX時(shí)間的方法
本文實(shí)例講述了PHP日期函數(shù)date格式化UNIX時(shí)間的方法。分享給大家供大家參考。具體分析如下:
日期函數(shù)可以根據(jù)指定的格式將一個(gè)unix時(shí)間格式化成想要的文本輸出
使用到函數(shù)語(yǔ)法如下
string date (string $Format); string date (string $Format, int $Time);
下面是演示代碼
<?php echo "When this page was loaded,\n"; echo 'It was then ', date ('r'), "\n"; echo 'The currend date was ', date ('F j, Y'), "\n"; echo 'The currend date was ', date ('M j, Y'), "\n"; echo 'The currend date was ', date ('m/d/y'), "\n"; echo 'The currend date was the ', date ('jS \o\f M, Y'), "\n"; echo 'The currend time was ', date ('g:i:s A T'), "\n"; echo 'The currend time was ', date ('H:i:s O'), "\n"; echo date ('Y'); date ('L')?(print ' is'):(print ' is not'); echo " a leap year\n"; echo time ('U'), " seconds had elapsed since January 1, 1970.\n"; ?>
輸出結(jié)果如下
It was then Sat, 26 Dec 2009 07:09:51 +0000 The currend date was December 26, 2009 The currend date was Dec 26, 2009 The currend date was 12/26/09 The currend date was the 26th of Dec, 2009 The currend time was 7:09:51 AM GMT The currend time was 07:09:51 +0000 2009 is not a leap year 1261811391 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使用gmdate實(shí)現(xiàn)將一個(gè)UNIX 時(shí)間格式化成GMT文本的方法
- PHP常用函數(shù)之格式化時(shí)間操作示例
相關(guān)文章
PHP實(shí)現(xiàn)獲取MySQL數(shù)據(jù)庫(kù)的記錄數(shù)據(jù)
如果后臺(tái)數(shù)據(jù)處理使用PHP來(lái)進(jìn)行,那么就要有相應(yīng)的數(shù)據(jù)處理及返回。最常用的就是獲取記錄總數(shù)和表記錄查詢結(jié)果。本文將為大家介紹如何利用PHP實(shí)現(xiàn)獲取MySQL數(shù)據(jù)庫(kù)的記錄數(shù)據(jù),需要的可以參考一下2022-02-02通過(guò)PHP自帶的服務(wù)器來(lái)查看正則匹配結(jié)果的方法
這篇文章主要介紹了通過(guò)PHP自帶的服務(wù)器來(lái)查看正則匹配結(jié)果的方法,通過(guò)這樣的方式可以在搬上服務(wù)器之前在工作環(huán)境上完成很多輕量級(jí)的試驗(yàn),需要的朋友可以參考下2015-12-12PHP使用mysql與mysqli連接Mysql數(shù)據(jù)庫(kù)用法示例
這篇文章主要介紹了PHP使用mysql與mysqli連接Mysql數(shù)據(jù)庫(kù)的方法,結(jié)合實(shí)例形式分析了mysql與mysqli操作數(shù)據(jù)庫(kù)的連接、查詢、斷開(kāi)的相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下2016-07-07PHP中l(wèi)ist()函數(shù)用法實(shí)例簡(jiǎn)析
這篇文章主要介紹了PHP中l(wèi)ist()函數(shù)用法,結(jié)合實(shí)例形式簡(jiǎn)單分析了list()函數(shù)的功能,參數(shù)定義,使用技巧及相關(guān)注意事項(xiàng),需要的朋友可以參考下2016-01-01PHP實(shí)現(xiàn)負(fù)載均衡下的session共用功能
這篇文章主要介紹了PHP實(shí)現(xiàn)負(fù)載均衡下的session共用功能,結(jié)合實(shí)例形式分析了php基于memcache的session共享相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下2018-04-04PHP管理依賴(dependency)關(guān)系工具 Composer的自動(dòng)加載(autoload)
Composer 是PHP的一個(gè)包依賴管理工具,類似Ruby中的RubyGems或者Node中的NPM,它并非官方,但現(xiàn)在已經(jīng)非常流行。此文并不介紹如何使用Composer,而是關(guān)注于它的autoload的內(nèi)容吧。2014-08-08