Source Code:
(back to article)
<?php $date = new DateTime('2019-01-01 12:00:00', timezone_open('America/New_York')); $date->setTimezone(timezone_open('Europe/Paris')); echo $date->format('Y-m-d H:i:s');
Result:
Report an issue