PHP日期函數(shù)date格式化UNIX時間的方法
更新時間:2015年03月19日 10:42:19 作者:work24
這篇文章主要介紹了PHP日期函數(shù)date格式化UNIX時間的方法,實例分析了php中date函數(shù)的使用技巧,需要的朋友可以參考下
本文實例講述了PHP日期函數(shù)date格式化UNIX時間的方法。分享給大家供大家參考。具體分析如下:
日期函數(shù)可以根據(jù)指定的格式將一個unix時間格式化成想要的文本輸出
使用到函數(shù)語法如下
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.
希望本文所述對大家的php程序設(shè)計有所幫助。
相關(guān)文章
PHP實現(xiàn)獲取MySQL數(shù)據(jù)庫的記錄數(shù)據(jù)
如果后臺數(shù)據(jù)處理使用PHP來進行,那么就要有相應的數(shù)據(jù)處理及返回。最常用的就是獲取記錄總數(shù)和表記錄查詢結(jié)果。本文將為大家介紹如何利用PHP實現(xiàn)獲取MySQL數(shù)據(jù)庫的記錄數(shù)據(jù),需要的可以參考一下2022-02-02
PHP使用mysql與mysqli連接Mysql數(shù)據(jù)庫用法示例
這篇文章主要介紹了PHP使用mysql與mysqli連接Mysql數(shù)據(jù)庫的方法,結(jié)合實例形式分析了mysql與mysqli操作數(shù)據(jù)庫的連接、查詢、斷開的相關(guān)實現(xiàn)技巧,需要的朋友可以參考下2016-07-07
PHP管理依賴(dependency)關(guān)系工具 Composer的自動加載(autoload)
Composer 是PHP的一個包依賴管理工具,類似Ruby中的RubyGems或者Node中的NPM,它并非官方,但現(xiàn)在已經(jīng)非常流行。此文并不介紹如何使用Composer,而是關(guān)注于它的autoload的內(nèi)容吧。2014-08-08

