respect-validation/library/Respect/Validation/Rules/Date.php

48 lines
1,004 B
PHP
Raw Normal View History

2010-09-27 23:02:30 +02:00
<?php
namespace Respect\Validation\Rules;
use DateTime;
2010-09-27 23:02:30 +02:00
use Respect\Validation\Rules\AbstractDate;
use Respect\Validation\Exceptions\DateException;
2010-09-27 23:02:30 +02:00
class Date extends AbstractDate
2010-09-27 23:02:30 +02:00
{
public function __construct($format=null)
{
$this->format = $format;
}
public function validate($input)
{
if ($input instanceof DateTime)
return true;
if (!is_string($input))
return false;
2010-09-27 23:02:30 +02:00
if (is_null($this->format))
return (boolean) strtotime($input);
else
return date($this->format, strtotime($input)) == $input;
}
public function createException()
{
return new DateException;
}
2010-09-27 23:02:30 +02:00
public function assert($input)
{
if (!$this->validate($input))
throw $this
->getException()
->setParams($input, $this->format);
2010-09-27 23:02:30 +02:00
return true;
}
public function check($input)
{
return $this->assert($input);
}
2010-09-27 23:02:30 +02:00
}