WC_Validation::format_postcodepublic staticWC 1.0

Format the postcode according to the country and length of the postcode.

Method of the class: WC_Validation{}

No Hooks.

Returns

String. Formatted postcode.

Usage

$result = WC_Validation::format_postcode( $postcode, $country );
$postcode(string) (required)
Postcode to format.
$country(string) (required)
Country to format the postcode for.

WC_Validation::format_postcode() code WC 9.9.4

public static function format_postcode( $postcode, $country ) {
	return wc_format_postcode( $postcode, $country );
}