php datetime from timestamp code example
Example 1: php timestamp to date
<?php
echo date('m/d/Y H:i:s', 1541843467);
?>
Example 2: php datetime to timestamp
$time = '2021-03-31 23:59:00';
strtotime($time);
Example 3: php unix timestamp to date
$currentTime = DateTime::createFromFormat( 'U', $timestamp );
Example 4: php date object to timestamp
$date = new DateTime();
echo $date->getTimestamp();
Example 5: php datetime from timestamp
$ts = 1171502725;
$date = new DateTime("@$ts");