コード例 #1
0
ファイル: ZonedDateTime.php プロジェクト: brick/date-time
 /**
  * Returns a copy of this ZonedDateTime with the specified period in days added.
  *
  * @param integer $days
  *
  * @return ZonedDateTime
  */
 public function plusDays($days)
 {
     return ZonedDateTime::of($this->localDateTime->plusDays($days), $this->timeZone);
 }