I have following Array:
object(stdClass)#3137 (10) {
["start"]=>
string(25) "2019-10-18T18:02:00+02:00"
["end"]=>
string(25) "2019-10-18T21:02:00+02:00"
}
how can I split "start" and "end" into two variables, first contains the date (as date, not string), second contains the time(as time not string) and insert in the same array?
Thanks vor any help.