So I've got this:
date('c')
which formats it like so:
2010-08-17T08:55:14-07:00
but I need a way to not have the colon in the offset, so maybe it would look like this:
2010-08-17T08:55:14-0700
What solution is there for this? I'm hoping for a slightly different format, rather than getting the string and replacing the last colon (using reg-ex or something).
Ideas?