Example #1
0
 /**
  * Returns a copy of this {@code OffsetDateTime} with the day-of-month altered.
  * <p>
  * If the resulting {@code OffsetDateTime} is invalid, an exception is thrown.
  * The time and offset do not affect the calculation and will be the same in the result.
  * <p>
  * This instance is immutable and unaffected by this method call.
  *
  * @param int $dayOfMonth the day-of-month to set in the result, from 1 to 28-31
  * @return OffsetDateTime an {@code OffsetDateTime} based on this date-time with the requested day, not null
  * @throws DateTimeException if the day-of-month value is invalid,
  *  or if the day-of-month is invalid for the month-year
  */
 public function withDayOfMonth($dayOfMonth)
 {
     return $this->_with($this->dateTime->withDayOfMonth($dayOfMonth), $this->offset);
 }
Example #2
0
 /**
  * Returns a copy of this {@code ZonedDateTime} with the day-of-month altered.
  * <p>
  * This operates on the local time-line,
  * {@link LocalDateTime#withDayOfMonth(int) changing the day-of-month} of the local date-time.
  * This is then converted back to a {@code ZonedDateTime}, using the zone ID
  * to obtain the offset.
  * <p>
  * When converting back to {@code ZonedDateTime}, if the local date-time is in an overlap,
  * then the offset will be retained if possible, otherwise the earlier offset will be used.
  * If in a gap, the local date-time will be adjusted forward by the length of the gap.
  * <p>
  * This instance is immutable and unaffected by this method call.
  *
  * @param int $dayOfMonth the day-of-month to set in the result, from 1 to 28-31
  * @return ZonedDateTime a {@code ZonedDateTime} based on this date-time with the requested day, not null
  * @throws DateTimeException if the day-of-month value is invalid,
  *  or if the day-of-month is invalid for the month-year
  */
 public function withDayOfMonth($dayOfMonth)
 {
     return $this->resolveLocal($this->dateTime->withDayOfMonth($dayOfMonth));
 }