How To Convert Timestamp To Readable date/time in PHP?

03-Apr-2023

.

Admin

How To Convert Timestamp To Readable date/time in PHP?

Hi Friends,

This example is how to Convert timestamp to readable date/time in PHP?.

This can be achieved with the help of date() function, which is an inbuilt function in PHP can be used to format the timestamp given by time() function. This function returns a string formatted according to the given format string using the given integer timestamp or the current time if no timestamp is given.

So let's start following example.

Example : 1


This can be achieved with the help of date() function, which is an inbuilt function in PHP can be used to format the timestamp given by time() function. This function returns a string formatted according to the given format string using the given integer timestamp or the current time if no timestamp is given.

<?php

echo date('m/d/Y H:i:s', 1541843467);

?>

Output:

11/01/2022 09:51:07

Example : 2

<?php

echo date('m/d/Y H:i:s', time());

?>

Output:

Current Time in formatted form

#PHP