Answers for "convert timestamp to minutes in php"

PHP
2

php datetime to timestamp

$time = '2021-03-31 23:59:00';
strtotime($time);
Posted by: Guest on March-22-2021
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 "convert timestamp to minutes in php"

Browse Popular Code Answers by Language