我刚刚开始在PHP中使用DateTime对象,现在我无法理解这一点。
我认为DateTime
会考虑我使用date_default_timezone_set
设置的默认时区,但显然不会:
date_default_timezone_set('Europe/Oslo');
$str = strtotime('2015-04-12');
$date = new DateTime("@".$str);
$response['TZ'] = $date->getTimezone()->getName();
$response['OTZ'] = date_default_timezone_get();
$response['Date'] = $date->format('Y-m-d');
echo json_encode($response);
这是我得到的回复:
{
"TZ":"+00:00",
"OTZ":"Europe\/Oslo",
"Date":"2015-04-11"
}
将正确的DateTimeZone传递给构造函数也不起作用,因为DateTime在给出UNIX时间戳时忽略它。 (如果我将常规日期字符串传递给构造函数,它可以工作)。
如果我这样做,日期就会正确显示:
$date->setTimezone(new DateTimeZone("Europe/Oslo"));
我真的不想在每次处理约会时都要通过时区,但是从我看来我可能需要的时间来看?
答案 0 :(得分:8)
我认为这是因为这里写的是: http://php.net/manual/en/datetime.construct.php
注意:$ timezone参数和当前时区将被忽略 当$ time参数是UNIX时间戳时(例如@ 946684800) 或指定时区(例如2010-01-28T15:00:00 + 02:00)。
使用UNIX时间戳在构造函数中设置DateTime对象的日期。
尝试使用这种方式设置DateTime对象
$date = new DateTime('2000-01-01');
答案 1 :(得分:5)
您好,您始终可以使用继承来绕过问题。 这是更明确的方式
**
class myDate extends DateTime{
public function __construct($time){
parent::__construct($time);
$this->setTimezone(new DateTimeZone("Europe/Oslo"));
}
}
$str = strtotime('2015-04-12');
$md = new myDate("@".$str);
echo $md->getTimezone()->getName();
**