Skip to content

Instantly share code, notes, and snippets.

@cviebrock
Created March 8, 2012 18:07
Show Gist options
  • Select an option

  • Save cviebrock/2002405 to your computer and use it in GitHub Desktop.

Select an option

Save cviebrock/2002405 to your computer and use it in GitHub Desktop.
<?php
// $rules = array(
// 'field' => 'required|date:Y-m-d'
// );
public function validate_date($attribute, $value, $parameters)
{
$format = $parameters[0];
try {
$date = new DateTime($value);
return $date->format($format) == $value;
} catch ( Exception $e ) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment