Merge pull request #9315 from wtom/validate_postcode_de

german postcode validation
This commit is contained in:
Mike Jolley 2015-10-08 11:56:34 +01:00
commit 81b4d5535d
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ class WC_Validation {
case 'CH' :
$valid = (bool) preg_match( '/^([0-9]{4})$/i', $postcode );
break;
case 'DE' :
$valid = (bool) preg_match( '/^([0]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{3}$/', $postcode );
break;
case 'GB' :
$valid = self::is_GB_postcode( $postcode );
break;