<?php $string = '(Dec 27, 2013 05:26:29 PST)'; $tz = 'America/Los_Angeles'; preg_match('/^\((.*) PST\)$/', $string, $matches); $string = $matches[1]; $dt = new DateTime($string, new DateTimeZone($tz)); echo $dt->format('U');
You have javascript disabled. You will not be able to edit any code.