giustin
unread,May 22, 2010, 7:27:31 PM5/22/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Twitter Development Talk
Hi,
In PHP, I can get the formated date. Example:
$created_at = new DateTime($result->created_at);
$created_at = $created_at->format("Y-m-d");
echo $created_at.' - ';
Questions:
1) how to get the time like "hh:mm:ss" from the result->created_at?
2) how to get the time in a specified time-zone, like UTC-03 (Brazil)?
Thank you.