mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-07-29 02:07:27 +08:00
12 lines
288 B
PHP
12 lines
288 B
PHP
<?php
|
|
|
|
if ( ! class_exists( 'WC_Validation' ) ) {
|
|
class WC_Validation {
|
|
public static function is_postcode( string $postcode, string $country ): bool {
|
|
if ( strlen( trim( preg_replace( '/[\s\-A-Za-z0-9]/', '', $postcode ) ) ) > 0 ) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
}
|