<?php $timezone = new \DateTimeZone(\date_default_timezone_get()); $now = new \DateTimeImmutable('now', $timezone); $date = \DateTimeImmutable::createFromFormat('U.u', $now->format('U.u'), $timezone); var_dump($now, $date, $now == $date);
You have javascript disabled. You will not be able to edit any code.