日期与时间函数库

date

(PHP3 , PHP4)

date ---  将本地的时间/日期格式化

语法 : string date (string format [, int timestamp])

说明 : 

使用给予的timestamp按照格式化字符串传回一格式化字符串,如果没有给予timestamp则使用本地的时间。

以下是格式化字符串中认定的字元

在格式化字符串中未被认出的字元将会被列出来,当使用gmdate( )时"Z"格式将总是传回"0"

Example :

<?php

   print (date ("l dS of F Y h:i:s A")); 

   print ("July 1, 2000 is on a " . date ("l", mktime(0,0,0,7,1,2000)));

?>

它可能会和date( )与mktime( )一起使用,来找出是将来或是过去的日期

Example :

<?php

   $tomorrow  = mktime (0,0,0,date("m")  ,date("d")+1,date("Y"));

   $lastmonth = mktime (0,0,0,date("m")-1,date("d"),  date("Y"));

   $nextyear  = mktime (0,0,0,date("m"),  date("d"),  date("Y")+1);

?>

将日期格式化成其它的语言(languages),你应该使用setlocal( )和strftime( )函数


上一页 首页 下一页