Answers for "php timestamp online converter"

PHP
10

php timestamp to date

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

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

Code answers related to "php timestamp online converter"

Browse Popular Code Answers by Language