本文整理汇总了PHP中DateTimeImmutable::setTimeZone方法的典型用法代码示例。如果您正苦于以下问题:PHP DateTimeImmutable::setTimeZone方法的具体用法?PHP DateTimeImmutable::setTimeZone怎么用?PHP DateTimeImmutable::setTimeZone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DateTimeImmutable
的用法示例。
在下文中一共展示了DateTimeImmutable::setTimeZone方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetDateTimeCached
function testGetDateTimeCached()
{
$tz = new \DateTimeZone('Europe/Amsterdam');
$dt = new \DateTimeImmutable('1985-07-04 01:30:00', $tz);
$dt->setTimeZone($tz);
$elem = $this->vcal->createProperty('DTSTART');
$elem->setDateTime($dt);
$this->assertEquals($elem->getDateTime(), $dt);
}
示例2: __toString
/**
* String representation of a PeriodLib using ISO8601 Time interval format
*
* @return string
*/
public function __toString()
{
$utc = new DateTimeZone('UTC');
return $this->startDate->setTimeZone($utc)->format(self::DATE_ISO8601) . '/' . $this->endDate->setTimeZone($utc)->format(self::DATE_ISO8601);
}