php检测时间格式

2018-12-21T14:45:00
    public function is_Date($text){ 
        $pattern = '/[\d]{4}-[\d]{1,2}-[\d]{1,2}\s[\d]{1,2}:[\d]{1,2}:[\d]{1,2}/';
        if(preg_match($pattern,$text)){
            return true;
        }else{
            return false;
        }

    }
当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »