I want to convert date form from d/m/Y to Y-m-d with timezone offset. I am able to convert from d/m/Y to Y-m-d with this code:
$date = DateTime::createFromFormat('d/m/Y', $date);
$date = $date->format('Y-m-d');
But I am not sure how to add the timezone offset.
(PHP 5 >= 5.3.0) you actually enter the third parameter
public static DateTime DateTime::createFromFormat(string $format , string $time[, DateTimeZone $timezone])
$date = DateTime::createFromFormat('d/m/Y', $date, new DateTimeZone('Europe/Berlin'));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With