コード例 #1
0
ファイル: TimeSpan.php プロジェクト: openworkers/components
 /**
  * Returns the days between Start and Stop
  * @return int
  */
 public function getDaysBetween()
 {
     return $this->start->diff($this->end)->d;
 }