I'd like to convert value/date/time that I got from callback raw value that I got is like this
$value='2021-01-20T19:03:52.355+0300';
I need to convert it into like this
$value='20-01-2021 23.03.52,355000 +07:00';
what I've done some substr and concat but unfortunately it ends up with string and my db datatype format is timestamp and i can't insert the value to db
read some about DateTime::createFromFormat
and I can convert the time format but still no clue for converting to another timezone
source https://stackoverflow.com/questions/70529737/converting-time-with-timezone-php
Comments
Post a Comment