cap waktu PHP hingga saat ini
<?php
echo date('m/d/Y H:i:s', 1541843467);
?>
Heinz
<?php
echo date('m/d/Y H:i:s', 1541843467);
?>
$time = '2021-03-31 23:59:00';
strtotime($time);
<?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";
?>
$unix_timestap = microtime(true);
$date_time = gmdate("Y-m-d\TH:i:s\Z", (int)$unix_timestap);