コード例 #1
0
ファイル: LocalDate.php プロジェクト: celest-time/prototype
 /**
  * TODO Should be package local
  * @internal
  * @param LocalDate $end
  * @return int
  */
 function daysUntil(LocalDate $end)
 {
     return $end->toEpochDay() - $this->toEpochDay();
     // no overflow
 }
コード例 #2
0
 public function toEpochDay()
 {
     return $this->isoDate->toEpochDay();
 }