date_default_timezone_set('Europe/Copenhagen'); echo 'The time in Copenhagen is: ' . date('H:i:s') . PHP_EOL; date_default_timezone_set('America/New_York'); echo 'The time in New York is: ' . date('H:i:s') . PHP_EOL; date_default_timezone_set('Europe/Moscow'); echo 'The time in Moscow is: ' . date('H:i:s') . PHP_EOL; // This is the output The time in Copenhagen is: 09:45:56 The time in New York is: 03:45:56 The time in Moscow is: 11:45:56 |