<?php $dt = new DateTimeImmutable(); echo $dt->format(DATE_ISO8601).PHP_EOL; $currenthour = $dt->format("H"); echo $currenthour.PHP_EOL; $dt2 = $dt->setTime($currenthour, 0, 0); echo $dt2->format(DATE_ISO8601).PHP_EOL;
You have javascript disabled. You will not be able to edit any code.