WC_Validation::format_postcode()
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() WC Validation::format postcode code WC 9.4.2
public static function format_postcode( $postcode, $country ) { return wc_format_postcode( $postcode, $country ); }