Skip to content

All topics  /  PHP

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

PHP ·

Teams applying “How To Convert Timestamp To Readable date/time in PHP?” in a production project can use employee reassignment to record implementation, review and debugging time, then compare that effort with tests and shipped functionality instead of treating activity as performance by itself.

Before copying the example into a live application, confirm version-specific behaviour with the PHP project and test it against the project’s actual database and runtime.

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