This article mainly introduces the method of formatting UNIX time with PHP date function date, and analyzes the date function in php with examples. For usage tips, friends in need can refer to them
The example in this article describes how to format UNIX time using the PHP date function date. Share it with everyone 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 used is as follows
?
|
string date (string $Format);
string date (string $Format, int $Time);
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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 of 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 yearn"; echo time ('U'), " seconds had elapsed since January 1, 1970.n"; ?> |
?
1
4 5 614 |
|
1 2 3 4 5 6 7 8 9 | It was then Sat, 26 Dec 2009 07:09:51 0000 The current date was December 26, 2009 The current date was Dec 26, 2009 The current date was 12/26/09 The current date was the 26th of Dec, 2009 The current time was 7:09:51 AM GMT The current time was 07:09:51 0000 2009 is not a leap year 1261811391 seconds had elapsed since January 1, 1970. |