Answers for "php convert strtotime to timestamp"

PHP
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

Browse Popular Code Answers by Language