How to Convert Date and Time from one timezone to another in php
In this tutorial, we will explain to you how to convert date and time from one timezone to another in PHP. we can easily change the date and time from one timezone to another timezone using PHP.
1 2 3 4 5 6 | $date = new DateTime('2022-03-12 12:45:00', new DateTimeZone('Europe/Berlin')); echo $date->format('Y-m-d H:i:s'); echo "<br/>"; $date->setTimezone(new DateTimeZone('America/New_York')); echo $date->format('Y-m-d H:i:s'); |
Output
1 2 | 2022-03-12 12:45:00 2022-03-12 06:45:00 |
Please follow and like us: