Show a timestamp as a date in the Drupal user's timezone

$ts = 1288639479;
$local_zone = date_default_timezone_name(TRUE);
$newdate = date_make_date($ts, 'UTC', DATE_UNIX);
date_timezone_set($newdate, timezone_open($local_zone));
print date_format_date($newdate, 'custom', 'm/d/Y H:i');

Add new comment