3v4l.org

run code in 300+ PHP versions simultaneously
<?php $userTimezone = new DateTimeZone('Europe/Chisinau'); $from = new DateTime( 'now', $userTimezone ); $from->modify( 'first day of this month' ); $from->setTime(0,0,0); $from->setTimezone( new DateTimeZone( 'UTC' ) ); $from2 = clone $from; $mongoTime = $from2->getTimestamp(); var_dump($from->format('Y-m-d H:i:s'), $from2->format('Y-m-d H:i:s'));

preferences:
32.17 ms | 402 KiB | 5 Q