WC_Validation::format_postcode()public staticWC 1.0

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

Method of the class: WC_Validation{}

No Hooks.

Return

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 8.7.0

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