Reputation: 285
I came cross and string of timestamp, not quite sure what kind of format is it:
2011-04-20T17:04:55.678+00:00
also i need to specify PST time in the same format, how can i do that? Thanks.
Upvotes: 0
Views: 120
Reputation: 8836
It is an ISO 8601. If you are using Wordpress you can convert it using
<?php iso8601_to_datetime( $date_string, $timezone ) ?>
where $date_string is your ISO time.
If you are not, use strtotime($var)
Upvotes: 1