Answers for "convert timestamp to date string php"

PHP
13

php timestamp to date

<?php 
echo date('m/d/Y H:i:s', 1541843467); 
?>
Posted by: Guest on May-22-2020
2

convert timestamp to date php

<?php
$date = new DateTime();
echo $date->format('U = Y-m-d H:i:s') . "\n";

$date->setTimestamp(1171502725);
echo $date->format('U = Y-m-d H:i:s') . "\n";
?>
Posted by: Guest on January-27-2021
1

how to convert unix timestamp to date php

$unix_timestap  = microtime(true);
$date_time  	= gmdate("Y-m-d\TH:i:s\Z",  (int)$unix_timestap);
Posted by: Guest on December-25-2021

Code answers related to "convert timestamp to date string php"

Browse Popular Code Answers by Language