Assume I get a string like 08/22/2015 10:56 PM and that this date/time string always refers to only one particular time zone. I need to be able to convert that to this format: 'Ymd\THis\Z', which is the iCal format.
- How do I convert that string to Zulu time and into
'Ymd\THis\Z' - How do I then add, say, 30 minutes to that date/time?
Been trying to hack this with strtotime and DateTime, but I'm worried that I'm going about this the wrong way. Maybe there's a simpler and more straightforward solution?
DateTimeetc.