コード例 #1
0
ファイル: BrDateTime.php プロジェクト: jagermesh/bright
 function isTomorrow()
 {
     $yesterday = new BrDateTime();
     $yesterday->incDay(1);
     return $this->isSameDate($yesterday);
 }