Skip to content

Instantly share code, notes, and snippets.

@cameri
Last active December 26, 2015 14:09
Show Gist options
  • Save cameri/7163958 to your computer and use it in GitHub Desktop.
Save cameri/7163958 to your computer and use it in GitHub Desktop.
<?php
/*
* Validates a custom Datetime
* @param mixed check
* @param string
* @return boolean
*/
public function customDatetime($check, $format)
{
foreach ($check as $field=>$value)
{
if (DateTime::createFromFormat($format, $value) !== false)
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment