Ben bir timestamp bir javascript tarih dizesi ayrıştırmak zorunda. Tarih dize TZ bilgi varsa, neden) (setTimezone ile DateTime kurucudaki ve yine bir TZ nesnesi kaynağı var mı? Tarih TZ bilgi farkında olduğunu bunu yapmak için kolay bir yolu var mı?
$s = 'Thu Mar 11 2010 13:00:00 GMT-0500 (EST)';
$dt_obj = new DateTime($s, new DateTimeZone('America/New_York')); /* why? the TZ info is in the date string */
// again
$dt_obj->setTimezone(new DateTimeZone('UTC'));
echo 'timestamp ' , $dt_obj->getTimestamp(), '<br>';