format('U'); if ($timestamp < self::MINIMUM_TIMESTAMP || self::MAXIMUM_TIMESTAMP < $timestamp) { $this->message = ':attributeは 2000/01/01 00:00 〜 2099/12/31 23:59 の間のみ対応しています。'; return false; } $formatted = $date->format($format); if ($formatted === $value) { return true; } } return false; } /** * Get the validation error message. * * @return string */ public function message() { return $this->message; } }