当前位置: 首页>>代码示例>>PHP>>正文


PHP DateTimeInterface::getTimeZone方法代码示例

本文整理汇总了PHP中DateTimeInterface::getTimeZone方法的典型用法代码示例。如果您正苦于以下问题:PHP DateTimeInterface::getTimeZone方法的具体用法?PHP DateTimeInterface::getTimeZone怎么用?PHP DateTimeInterface::getTimeZone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DateTimeInterface的用法示例。


在下文中一共展示了DateTimeInterface::getTimeZone方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: validateDatePoint

 /**
  * Validate a DateTimeImmutable object.
  *
  * @param string|\DateTimeInterface $datetime
  *
  * @return \DateTimeImmutable
  */
 protected static function validateDatePoint($datetime)
 {
     if ($datetime instanceof DateTimeImmutable) {
         return $datetime;
     }
     if ($datetime instanceof DateTime) {
         return new DateTimeImmutable($datetime->format(self::DATE_LOCALE), $datetime->getTimeZone());
     }
     return new DateTimeImmutable($datetime);
 }
开发者ID:schpill,项目名称:standalone,代码行数:17,代码来源:period.php

示例2: runsAt

 public function runsAt(\DateTimeInterface $time)
 {
     if ($time->getTimeZone() != $this->tz) {
         $time = clone $time;
         $time->setTimeZone($this->tz);
     }
     if (!in_array($time->format('i'), $this->minutes)) {
         return false;
     }
     if (!in_array($time->format('H'), $this->hours)) {
         return false;
     }
     if ($this->daysOfMonth != self::LAST_DAY_OF_MONTH && !in_array($time->format('j'), $this->daysOfMonth)) {
         return false;
     }
     if ($this->daysOfMonth == self::LAST_DAY_OF_MONTH && $time->format('j') != $time->format('t')) {
         return false;
     }
     if (!in_array($time->format('w'), $this->daysOfWeek)) {
         return false;
     }
     if (!in_array($time->format('n'), $this->months)) {
         return false;
     }
     return true;
 }
开发者ID:shabbyrobe,项目名称:phonycron,代码行数:26,代码来源:Job.php


注:本文中的DateTimeInterface::getTimeZone方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。