How to implement timestamp format conversion in php: 1. Obtain the unix timestamp of the specified date through strtotime; 2. Use the date function to convert the specified timestamp into the system time format.
The operating environment of this article: Windows 7 system, PHP version 7.1, Dell G3 computer.
php How to convert timestamp to format?
Conversion of timestamp and date format in php
1. The PHP timestamp function obtains the unix timestamp of the specified date strtotime(”2009-1- 22″) The example is as follows:
echo strtotime(”2009-1-22″) 结果:1232553600
Instructions: Return the timestamp of 0:00:00 on January 22, 2009
2. The PHP timestamp function to obtain the English text date and time is as follows:
For comparison, use date to convert the current timestamp and the specified timestamp into system time
(1) Print the timestamp at this time tomorrow strtotime(” 1 day”)
Current time: echo date(”Y-m-d H:i:s”,time()) Result: 2009-01-22 09:40:25
Specified time: echo date(”Y-m-d H:i :s”,strtotime(” 1 day”)) Result: 2009-01-23 09:40:25
(2) Print the timestamp of yesterday at this time strtotime(”-1 day”)
Current time: echo date(”Y-m-d H:i:s”,time()) Result: 2009-01-22 09:40:25
Specified time: echo date(”Y-m-d H :i:s”,strtotime(”-1 day”)) Result: 2009-01-21 09:40:25
(3) Print the timestamp at this time next week strtotime(” 1 week ”)
Current time: echo date(”Y-m-d H:i:s”,time()) Result: 2009-01-22 09:40:25
Specified time: echo date ("Y-m-d H:i:s",strtotime(" 1 week")) Result: 2009-01-29 09:40:25
(4) Print the timestamp at this time last week strtotime( "-1 week")
Current time: echo date("Y-m-d H:i:s",time()) Result: 2009-01-22 09:40:25
Specify Time: echo date("Y-m-d H:i:s",strtotime("-1 week")) Result: 2009-01-15 09:40:25
(5) Print the specified day of the next week Timestamp strtotime(”next Thursday”)
Current time: echo date(”Y-m-d H:i:s”,time()) Result: 2009-01-22 09:40:25
Specify time: echo date("Y-m-d H:i:s",strtotime("next Thursday")) Result: 2009-01-29 00:00:00
(6) Print the specified last week The timestamp strtotime("last Thursday")
Current time: echo date("Y-m-d H:i:s",time()) Result: 2009-01-22 09:40:25
Specify time: echo date("Y-m-d H:i:s",strtotime("last Thursday")) Result: 2009-01-15 00:00:00
The above PHP timestamp function As can be seen from the example, strtotime can parse the date and time description of any English text into a Unix timestamp. We use mktime() or date() to format the date and time to obtain the specified timestamp to achieve the required date and time.
Example:
<?php //时间戳转日期 $date_time_array = getdate(1297845628); //1311177600 1316865566 $hours = $date_time_array["hours"]; $minutes = $date_time_array["minutes"]; $seconds = $date_time_array["seconds"]; $month = $date_time_array["mon"]; $day = $date_time_array["mday"]; $year = $date_time_array["year"]; echo "year:$year\nmonth:$month\nday:$day\nhour:$hours\nminutes:$minutes\nseconds:$seconds\n"; //正常日期转时间戳 echo mktime(0, 0, 0, 9, 18, 2011) . "\n"; echo mktime(0, 0, 0, 9, 25, 2011) . "\n"; //可以对此进行格式化 echo "time()显示年月日时分秒:" . date("Y-m-d H:i:s", time()) . "\n"; //这样连时,分秒一起显示 echo "time()只显示年月日:" . date("Y-m-d ", time()) . "\n"; //只年示年月日 echo "时间戳格式化:" . date("Y-m-d H:i:s", 1297845628) . "\n"; //直接使用时间戳 //把正常日期转成时间戳了,这里如果有时分秒也是同理, $year=((int)substr("2008-12-04",0,4));//取得年份 $month=((int)substr("2008-12-04",5,2));//取得月份 $day=((int)substr("2008-12-04",8,2));//取得几号 echo mktime(0,0,0,$month,$day,$year); ?>
Parts that need attention
. There are two types of PHP time, one is the timestamp type (1228348800), Second, the normal date format (2008-12-4)
. The timestamp of PHP5.1 and above will differ from the actual time by 8 hours. The solution is as follows
1. The final The simple way is not to use php5.1 or above-obviously this is not an advisable method! ! !
2. Modify php.ini. Open php.ini and search for date.timezone. Remove the semicolon = in front and add Asia/Shanghai at the end. Just restart the apache server. The disadvantage is that if the program is placed on someone else's server, php.ini cannot be modified, so there is nothing you can do.
3. Add a time initialization statement in the program, that is: "date_default_timezone_set("Asia/Shanghai");" This can be set arbitrarily by the programmer, which I recommend.
Time zone identifier, available values in mainland China are: PRC, Asia/Chongqing, Asia/Shanghai, Asia/Urumqi (in order China, Chongqing, Shanghai, Urumqi), Etc/GMT-8, Asia/ Harbin
Available in Hong Kong and Taiwan: Asia/Macao, Asia/Hong_Kong, Asia/Taipei (Macau, Hong Kong, Taipei in order)
And Singapore: Asia/Singapore
In this way, the output is Beijing time
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to convert timestamp to format in php. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
