简体   繁体   中英

Check that string is valid date

How can I check that my string is a valid date ("2018-01-01").

Is there a simple way, or do I need to do something like this:

if (Carbon::createFromFormat('YOUR DATE FORMAT', $stringVariable) !== false) {
    // valid date
}
$timestamp  = strtotime($date);

return $timestamp ? $date  : null ;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM