X::dump(\bbn\Str::isDateSql("1999-12-05 11:10:22"));
// (bool) true
X::dump(\bbn\Str::isDateSql("1999-12-05"));
// (bool) true
X::dump(\bbn\Str::isDateSql("19-12-1999"));
// (bool) false
function($st)
{
foreach (func_get_args() as $a) {
if (!Date::validateSQL($a)) {
return false;
}
}
return true;
}