函数来验证PHP中的日期格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数来验证PHP中的日期格式相关的知识,希望对你有一定的参考价值。
function checkDateFormat($date) { //match the format of the date { //check weather the date is valid of not return true; else return false; } else return false; } echo checkDateFormat("2008-02-29"); //return true echo checkDateFormat("2007-02-29"); //return false
以上是关于函数来验证PHP中的日期格式的主要内容,如果未能解决你的问题,请参考以下文章