PHP date function date format UNIX time Method
This article describes how to format the UNIX time using the date function of PHP. The example shows how to use the date function in php. For more information, see
This example describes how to format the UNIX time using the date function of the PHP date function. Share it with you for your reference. The specific analysis is as follows:
The date function can format a unix time into the desired text output according to the specified format.
The function syntax is as follows:
?
1 2 |
String date (string $ Format ); String date (string $ Format, int $ Time ); |
The following is the Demo code
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<? 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 "; ?> |
The output result is as follows:
?
1 2 3 4 5 6 7 8 9 |
It was then Sat, 26 Dec 2009 07:09:51 + 0000 The currend date was December 26,200 9 The currend date was Dec 26,200 9 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. |
I hope this article will help you with php programming.