コード例 #1
0
ファイル: datetime.php プロジェクト: ASDAFF/open_bx
 /**
  * Sets default timezone
  *
  * @return DateTime
  */
 public function setDefaultTimeZone()
 {
     $time = new \DateTime();
     $this->setTimezone($time->getTimezone());
     return $this;
 }
コード例 #2
0
ファイル: date.php プロジェクト: ASDAFF/open_bx
 /**
  * Returns Unix timestamp from date
  *
  * @return int
  */
 public function getTimestamp()
 {
     return $this->value->getTimestamp();
 }