Advertisement
T99

best way to validate a date

T99
May 2nd, 2023 (edited)
1,250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.11 KB | Source Code | 0 0
  1. $isDate=fn($v)=>[$p=date_parse($v),!$p["errors"]&&!$p["warnings"]&&checkdate($p["month"],$p["day"],$p["year"])][1];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement