WC_Tax::format_tax_rate_city()private staticWC 1.0

Format the city.

Метод класса: WC_Tax{}

Хуков нет.

Возвращает

Строку.

Использование

$result = WC_Tax::format_tax_rate_city( $city );
$city(строка) (обязательный)
Value to format.

Код WC_Tax::format_tax_rate_city() WC 8.7.0

private static function format_tax_rate_city( $city ) {
	return strtoupper( trim( $city ) );
}