コード例 #1
0
ファイル: DateAfter.php プロジェクト: GemsTracker/MUtil
 public function __construct($afterDate = null, $format = 'dd-MM-yyyy')
 {
     parent::__construct($format);
     $this->_afterDate = $afterDate;
 }
コード例 #2
0
ファイル: DateBefore.php プロジェクト: GemsTracker/MUtil
 public function __construct($beforeDate = null, $format = 'dd-MM-yyyy')
 {
     parent::__construct($format);
     $this->_beforeDate = $beforeDate;
 }