Home > Backend Development > PHP Tutorial > How to format UNIX time using PHP date function date_PHP Tutorial

How to format UNIX time using PHP date function date_PHP Tutorial

WBOY
Release: 2016-07-13 10:02:29
Original
909 people have browsed it

How to format UNIX time with PHP date function date

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

?

1

2

string date (string $Format);

string date (string $Format, int $Time);

1 2

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";

?>

The following is the demo code

?

1

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, 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.

2 3

4

5 6

78 9 10 11 12 13
14
<🎜>echo "When this page was loaded,n";<🎜> <🎜>echo 'It was then ', date ('r'), "n";<🎜> <🎜>echo 'The current date was ', date ('F j, Y'), "n";<🎜> <🎜>echo 'The current date was ', date ('M j, Y'), "n";<🎜> <🎜>echo 'The current date was ', date ('m/d/y'), "n";<🎜> <🎜>echo 'The current date was the ', date ('jS of M, Y'), "n";<🎜> <🎜>echo 'The current time was ', date ('g:i:s A T'), "n";<🎜> <🎜>echo 'The current 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";<🎜> <🎜>?>
The output results are as follows ?
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.
I hope this article will be helpful to everyone’s PHP programming design. http://www.bkjia.com/PHPjc/970748.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/970748.htmlTechArticleHow to format UNIX time with PHP date function date. This article mainly introduces the method of formatting UNIX time with PHP date function date. Methods, examples analyze the usage skills of date function in php, the friends you need...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template