ItSolutionStuff.com

PHP Convert Time from One Timezone to Another Example

By Hardik Savani β€’ May 14, 2024
PHP

Hey Guys,

Now, let's see post of convert time from one timezone to another laravel. let’s discuss about php convert time from one timezone to another. I’m going to show you about php convert datetime from one timezone to another. This example will help you php convert date time to different timezone example.

PHP provide some ready made timezone conversion classes but it a very complected. so we have try to define this function simple way.

You can create a simple class and write one function into the class. then you able to use this function everywhere.

Example:

<?php

$date = new DateTime('2022-05-11 12:00:00', new DateTimeZone('Europe/London'));

echo $date->format('Y-m-d H:i:sP') . "\n";

$date->setTimezone(new DateTimeZone('Europe/Bucharest'));

echo $date->format('Y-m-d H:i:sP') . "\n";

?>

Output:

2022-05-11 12:00:00+01:00

2022-05-11 14:00:00+03:00

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

How to Get All Dates Between Two Dates in PHP?

Read Now β†’
β˜…

PHP Remove Element from Array by Value Example

Read Now β†’
β˜…

How to Remove First Element from Array in PHP?

Read Now β†’
β˜…

PHP Curl Request with Username and Password Example

Read Now β†’
β˜…

PHP Create Directory If It Doesn't Exist Example

Read Now β†’
β˜…

PHP Find URL in Text (String) and Make Link Example

Read Now β†’
β˜…

PHP Count Number of Pages in PDF File

Read Now β†’
β˜…

How to Partially Hide Email Address in PHP?

Read Now β†’
β˜…

PHP CURL Post Request with Parameters Example

Read Now β†’
β˜…

PHP - How to Reindex Array Key After Unset Key?

Read Now β†’
β˜…

PHP Ajax Infinite Scroll Pagination Example

Read Now β†’
β˜…

How to Make Read More Link from String in PHP?

Read Now β†’
β˜…

PHP Bootstrap Autocomplete Tokenfield using Ajax Example

Read Now β†’