In PHP, the function that converts timestamps to local time is the date() function. This function can format the timestamp into a more readable date and time. You can set the specified parameters to specify Display the local time format, the syntax is "date (specifies the format of the timestamp, timestamp)".
The operating environment of this article: Windows 10 system, PHP version 7.1, Dell G3 computer.
PHP date() function can format timestamps into more readable dates and times.
Tip timestamp is a character sequence that represents the date/time when a certain event occurred.
Syntax
string date ( string $format [, int $timestamp ] )
format Required. Specifies the format of the timestamp.
timestamp Optional. Specify timestamp. The default is the current date and time.
The first required parameter of the date() function, format, specifies how to format the date/time.
Here are some available characters:
d - represents the day of the month (01 - 31)
m - represents the month (01 - 12)
Y - represents the year (four digits)
If you need to know the format parameter, it is available For a full list of characters, please consult our PHP Date Reference Manual, date() function.
You can insert other characters between letters, such as "/", "." or "-", so that you can add additional formatting:
<?php echo date("Y/m/d") . "<br>"; echo date("Y.m.d") . "<br>"; echo date("Y-m-d"); ?>
The output of the above code is as follows :
Recommended study: "PHP Video Tutorial"
The above is the detailed content of What is the function in php to convert timestamp to local time?. For more information, please follow other related articles on the PHP Chinese website!